タイル化された画像の背景を使用する角の丸いビューを作成する必要があります。私はlayer-list
すでに試しましたが、角が丸いbitmap
上に置かれているだけなので、これはうまくいきません。shape
ご意見をお聞かせください。
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle" android:padding="10dp">
<corners android:bottomRightRadius="12dp"
android:bottomLeftRadius="12dp"
android:topLeftRadius="12dp"
android:topRightRadius="12dp" />
</shape>
</item>
<item>
<bitmap android:src="@drawable/profile_data_background_im"
android:tileMode="repeat" />
</item>
</layer-list>