android按钮半透明

在main.xml里面加入

<Button
android:text="@+id/Button01"
android:id="@+id/Button01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#00000000"
   />

就可以了
半透明<Button android:background="#e0000000" ... />
透明<Button android:background="#00000000" ... />

猜你喜欢

转载自994667188-qq-com.iteye.com/blog/1675269