我需要創建一個使用平鋪圖像背景的圓角視圖。我已經嘗試過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>
http://www.curious-creature.org/2012/12/11/android-recipe-1-image-with-rounded-corners/。 http://ruibm.com/?p=184 – Raghunandan
您是否嘗試過切換圖層列表中的項目? –
@Dmitry是我試圖交換它們,但沒有成功 – Eugene