我在图像上有一个按钮。我希望这个按钮具有纯色背景颜色和透明文本(以显示背面图像)。是否可以让它只有透明文本?
问问题
1367 次
3 回答
2
尝试将这些属性添加到您的 Button:
android:textColor="@android:color/transparent"
android:background="@android:color/black"
于 2015-02-20T18:14:26.773 回答
1
这听起来像是 ImageButton 的一个用例。它允许指定图像和背景。注意 src 和 background 标签,txt 不是必需的。
<ImageButton
android:id="@+id/imageBtn"
android:layout_width="@dimen/btn_large_len"
android:layout_height="@dimen/btn_large_len"
android:src="@drawable/ic_action_play"
android:background="@drawable/btn_gray" >
</ImageButton>
于 2015-02-20T18:18:27.353 回答
1
透明是指部分可见。还要查看图像按钮,而不是将背景图像分配给按钮。
于 2015-02-20T18:15:29.637 回答