制作半透明按钮,使按钮颜色可见,背景应可见

时间:2013-04-01 07:26:15

标签: android button transparency

我一直在尝试实现这个半透明按钮,但我总是失败了。我已经提到了很多像this这样的人。但仍然没有运气。我也试过了android:color="#66FF0000",但它并没有让它变得半透明。以下是我的代码。

<Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:clickable="true"
        android:text="select"
        android:onClick="selectClick"
        android:color="#80000000" 
      />

我想要这种半透明的矩形按钮,以便按钮的蓝色应该是可见的,活动的绿色也应该是可见的。有人可以建议我吗? 在下面的图片中,我无法在按钮上绘制绿色以显示我想要的内容。但我想我的上述解释是可以理解的。

或者,如果无法使蓝色可见,至少我希望它看起来像让用户感觉有一个按钮,绿色应该是可见的。

enter image description here

1 个答案:

答案 0 :(得分:8)

使用

android:background =“#80000000”

而不是

android:color =“#80000000”