我想为音乐播放器创建控制按钮。我的要求是,按钮应该是透明的。意味着父母背景应该通过按钮可见。请告诉我怎么做。我应该使用哪个小部件? 以下是我要求的图片。
答案 0 :(得分:0)
设置属性" alpha" 0到1之间的按钮,其中0是不可见的,1是可见的:
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="New Button"
android:id="@+id/button"
android:layout_gravity="center_horizontal|bottom"
android:alpha="0.5" />
答案 1 :(得分:0)
please check below link and use to set like below
http://stackoverflow.com/questions/15852122/hex-transparency-in-colors
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="New Button"
android:id="@+id/button"
android:background="#E6FFFFFF"
android:alpha="0.5" />
// here E6 is alpha code
// and i set it for white color(FFFFFF)