我希望我的按钮是透明的,因为我在活动上有一个图像作为背景。如果按钮不透明,则这些按钮会覆盖图像并且图像背景似乎无用。
如果我使用android:background="@android:color/transparent"
,它会使我的按钮完全不可见,除了上面的文字。所以,我需要按钮是透明的,只要它应该是可见的有一个按钮。代码片段将不胜感激。
<Button
android:id="@+id/new_button"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@android:color/transparent" //this line makes the button completely invisible.
android:text="@string/label" />