我为线性布局设置了背景。但我的按钮被这种颜色覆盖。我需要正常的按钮颜色。
<LinearLayout
android:id="@+id/expandable"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#000000"
android:orientation="horizontal" >
<Button
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:text="Delete"
android:drawableLeft="@drawable/content_discard" />
</LinearLayout>
我的布局image
请我帮帮我。
答案 0 :(得分:1)
在你的按钮标签中写下:
<Button
android:background = "#D3D3D3"/>
答案 1 :(得分:1)
您可以使用
android:background="@android:drawable/btn_default"
示例:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/expandable"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#000000"
android:orientation="horizontal" >
<Button
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:background="@android:drawable/btn_default"
android:text="Delete" />
</LinearLayout>
您将获得以下输出: