xml - 无法将形状设置为TextView的背景

时间:2018-04-19 16:13:36

标签: android xml android-shape

我试图设置一个带有笔划的透明圆圈作为android中TextView的背景:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:id="@+id/status"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="24dp"
        android:background="@drawable/decibel_circle"
        android:text="30 dB"
        android:fontFamily="sans-serif"
        android:textColor="@android:color/black"
        android:textSize="70dp" />
</RelativeLayout>

这是我想要使用的形状,位于decibel-circle.xml

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <shape xmlns:android="http://schemas.android.com/apk/res/android"
        android:shape="oval">
    <stroke
        android:width="5dp"
        android:color="#F44336">
    </stroke>
    <solid android:color="@android:color/transparent"/>
    <size
        android:width="36dp"
        android:height="36dp" />
    <corners android:radius="12dp" />
    </shape>
</selector>

问题在于,在预览和运行我的应用程序时都不会显示形状。 我做错了什么?

1 个答案:

答案 0 :(得分:1)

在您的decibel-circle.xml删除selector

仅使用shape

仅限此

 <shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="oval">
<stroke
    android:width="5dp"
    android:color="#F44336">
</stroke>
<solid android:color="@android:color/transparent"/>
<size
    android:width="36dp"
    android:height="36dp" />
<corners android:radius="12dp" />
</shape>