2010年11月8日 星期一

[Android] 將ImageButton背景設為透明

左邊透明, 右邊是一般



我發現設為透明最快的方法, 就是設為@null:
<ImageButton android:id="@+id/ImageButton01"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:src="@drawable/normal"
  android:background="@null"
  />

在網路上看到有人說
透明是#00000000
半透明是#e0000000
不過目前我試不出半透明跟透明差在哪= ="
Related Posts Plugin for WordPress, Blogger...