我需要在这个背景下做一个容器:
背景必须在此形状内重复(具有圆角顶部的矩形)。
因为我认为使用9patch无法执行此操作, 我已经研究了形状,但在这里,似乎不可能得到我想要的东西......
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners
android:topRightRadius="20dp"
android:topLeftRadius="10dp"
android:bottomLeftRadius="0dp"
android:bottomRightRadius="0dp"/>
<solid
android:color="@color/red"/>
</shape>
我无法将形状链接到我的:
<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/point1sur4"
android:tileMode="repeat" />
而且,我的形状有四个圆角......
希望你能帮忙! 谢谢, 雷诺答案 0 :(得分:0)
尝试使用android:background="@drawable/point1sur4
“代替android:src="@drawable/point1sur4"