Skip to content

Instantly share code, notes, and snippets.

@dingzhihu
Created July 6, 2012 14:35
Show Gist options
  • Save dingzhihu/3060526 to your computer and use it in GitHub Desktop.
Save dingzhihu/3060526 to your computer and use it in GitHub Desktop.
设置Button的点击效果为40%透明
<?xml version="1.0" encoding="utf-8"?>
<Button xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/selector"
android:padding="10dp"
android:text="@string/hello" />
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/shape_drawable" android:state_pressed="true"></item>
</selector>
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<solid android:color="#66ffffff" />
</shape>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment