我需要创建一个使用平铺图像背景的圆角视图。我已经尝试过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>