我想在这个音乐播放器中设置透明的背景图像,但我不知道如何设置这可以帮助我让图片变得透明
答案 0 :(得分:1)
您可以使用png文件或尝试:
ImageView myImage = (ImageView) findViewById(R.id.myImage);
myImage.setAlpha(127); //value: [0-255]. Where 0 is fully transparent and 255 is fully opaque.
或试试这个:
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/blah"
android:alpha=".75"/>