2017-04-17 84 views
0

我想使用XML定義背景圖片。就像這樣:角落中的Android XML背景圈

<?xml version="1.0" encoding="utf-8"?>  
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> 
<item > 
    <shape 
     android:shape="rectangle"> 
     <solid android:color="#C0C0C0" /> 
     <corners android:radius="5dp"/> 
    </shape> 
</item> 
<item android:right="1dp" android:left="1dp" android:bottom="3dp"> 
    <shape 
     android:shape="rectangle"> 
     <solid android:color="#FFFFFF"/> 
     <corners android:radius="5dp"/> 
    </shape> 
</item> 
</layer-list> 

對於一些視覺的原因,我想畫界在此背景XML的每一個角落。

有沒有可能這樣做?例如像這樣:

Expected output

+2

發表您的預期輸出 –

+0

編輯問題 – Billabong

回答

0

您可以通過以下鏈接使用RoundedImageView類,
compile 'com.makeramen:roundedimageview:2.3.0'
RoundedImageView