按钮没有显示任何颜色..即使是默认颜色

时间:2019-03-16 12:51:38

标签: android android-xml android-button android-styles

按钮显示的样式或颜色不正确,请参见下文。这是xml文件。

<RelativeLayout android:id="@+id/test_root_view"
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">



    <Button
        android:layout_centerInParent="true"
        android:layout_marginBottom="9dp"
        android:id="@+id/option_1"
        android:layout_width="320dp"
        android:layout_height="wrap_content"
        android:textSize="20sp"
        tools:text="Option 1"
        android:text="option 1"/>

    <Button
        android:layout_centerInParent="true"
        android:layout_marginBottom="9dp"
        android:id="@+id/option_2"
        android:layout_width="320dp"
        android:layout_height="wrap_content"
        android:textSize="20sp"
        tools:text="Option 2"
        android:text="option 2"
        android:layout_below="@id/option_1"/>
    <Button
        android:layout_marginBottom="9dp"
        android:layout_centerInParent="true"
        android:id="@+id/option_3"
        android:layout_width="320dp"
        android:layout_height="wrap_content"
        android:textSize="20sp"
        tools:text="Option 3"
        android:text="option 3"
        android:layout_below="@id/option_2"/>
    <Button
        android:layout_marginBottom="9dp"
        android:layout_centerInParent="true"
        android:id="@+id/option_4"
        android:layout_width="320dp"
        android:layout_height="wrap_content"
        android:textSize="20sp"
        tools:text="Option 4"
        android:text="option 4"
        android:layout_below="@id/option_3"/>

我以前从未遇到过此类问题。.我也尝试过不同版本的android ..相同的结果

这是这四个按钮的屏幕截图:  enter image description here

0 个答案:

没有答案