私はこの背景を持つコンテナを作成する必要があります:
背景は、この形状内で繰り返される必要があります(上部の角が丸い長方形)。
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" />
そして、私の形は四隅が丸くなっています…。
あなたが助けてくれることを願っています!Thx、ルノー