如何在xml中设置形状的背景?

Posted

技术标签:

【中文标题】如何在xml中设置形状的背景?【英文标题】:How to set a shape's background in xml? 【发布时间】:2012-03-05 01:58:30 【问题描述】:

我刚刚使用 android 形状创建了一个红色圆圈:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:innerRadiusRatio="4"
    android:shape="ring"
    android:thicknessRatio="9"
    android:useLevel="false" >

     <solid android:color="#FF0000" />

    <size
        android:
        android: />

</shape>

这真的很酷,但我无法将圆圈的背景颜色设置为我的颜色。我试过android:background="#FFFFFF",但在我的布局中它总是看起来是黑色的。如何设置上述形状的背景?

【问题讨论】:

【参考方案1】:

我认为layer-list 可能会对您有所帮助:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >

    <item>
        <shape android:shape="rectangle" >
            <solid android:color="#ffffff" />
        </shape>
    </item>
    <item>
        <shape
            android:innerRadiusRatio="4"
            android:shape="ring"
            android:thicknessRatio="9"
            android:useLevel="false" >
            <solid android:color="#FF0000" />
            <size
                android:
                android: />
        </shape>
    </item>

</layer-list>

【讨论】:

【参考方案2】:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">

    <corners android:radius="12dp" />
    <solid android:color="#ffffff" />
    <stroke
        android:
        android:color="@android:color/black" />

</shape>

【讨论】:

【参考方案3】:

我只是添加有用的研究作为答案。让我们假设您有一个shape 作为@GeneBo 描述的答案,并且您期待重新使用该形状,但使用不同的solid 颜色。所以你需要在你的小部件中做的就是:

android:background="@drawable/your_shape_to_reuse"
android:backgroundTint="@color/new_background_color_you_need"

【讨论】:

您可能还想添加android:backgroundTintMode="screen" 或其他模式。【参考方案4】:

好的,这个怎么样?

 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/linearLayout1"
    android:layout_
    android:layout_ 
    >

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/linearLayout1"
    android:layout_
    android:layout_ 
    android:background="#FFFFFF">
<TextView android:text="Foo"
    android:layout_
    android:layout_
    android:textColor="#000000"
    android:gravity="center"
    android:background="@drawable/red_circle"/>
    </LinearLayout>


</LinearLayout>

【讨论】:

我用的是TextView,可惜我需要在里面放文字 我刚刚发布了一个类似作品的更新,但不幸的是,圆圈的顶部和底部都被切断了。我必须再玩一会儿才能让它完全扩展。

以上是关于如何在xml中设置形状的背景?的主要内容,如果未能解决你的问题,请参考以下文章

无法在画布中设置背景图像

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

在java中设置形状的笔触宽度和颜色

在代码中设置形状资源 / GradientDrawable 的填充

在 IrfanView 中设置透明图像背景

如何在 loadView 中设置背景颜色?