How to set transparency of a background image Android xml file

后端 未结 9 707
南笙
南笙 2020-12-08 02:24

I have put an image in as the background of my android application with the following line of code:

 android:background=\"@drawable/background\"
9条回答
  •  情深已故
    2020-12-08 02:51

    You can use alpha property (http://developer.android.com/reference/android/view/View.html#attr_android:alpha) for your View:

    android:alpha="0.4"
    

提交回复
热议问题