我想設置視圖的Alpha級別。 我在這裏閱讀文檔:在視圖上設置Alpha級別不起作用
http://developer.android.com/reference/android/widget/RelativeLayout.html
,它好像它應該是可能的,即使在Android 2.1,我正在開發(如我不能看到它,否則說),但是當我把它添加到我的看法
<View
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_margin="20sp"
android:background="#ffffff"
android:alpha="0.9"></View>
我得到一個錯誤說:
沒有在包裝發現屬性「阿爾法」資源標識符10'android'
如何設置視圖的alpha級別?
好吧,這很奇怪,你正在按照文檔所述的那樣做。你可以嘗試使用0到255之間的整數值,所以沒有小數? [資源文檔](http://android.ubiwireless.com/Documentation.doc) – nldev