当前位置: 代码迷 >> Android >> android旋钮半透明
  详细解决方案

android旋钮半透明

热度:80   发布时间:2016-05-01 13:45:02.0
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" ... />
  相关解决方案