2014-07-01 104 views
0

只有上角,我需要四捨五入只有隅角或僅丹尼森 它的XML文件中的代碼定義的EditText半徑的Android

的背景
<?xml versi encoding="utf-8"?> 
<shapexmlns:android="http://schemas.android.com/apk/res/android"> 
<cornersandroid:radius="30dip"/> 
</shape> 

但圓整4個角 應該2輪角落所願

Image Sample 1

而且

Image Sample 2

+0

我看到人l四角圓...這是容器,中心線,線下方的文字,上方的文字 –

回答

3

試試這個,你創建一個自定義drawable供你查看。

頂radious

<?xml version="1.0" encoding="utf-8"?> 
    <shape xmlns:android="http://schemas.android.com/apk/res/android" 
    android:padding="10dip" 
    android:shape="rectangle" > 

    <solid android:color="#000000" /> 

    <corners 
    android:bottomLeftRadius="10dip" 
    android:bottomRightRadius="10dip" 
    android:topLeftRadius="0dip" 
    android:topRightRadius="0dip" /> 

    </shape> 

底部半徑

<?xml version="1.0" encoding="utf-8"?> 
<shape xmlns:android="http://schemas.android.com/apk/res/android" 
android:padding="10dip" 
android:shape="rectangle" > 

<solid android:color="#000000" /> 

<corners 
    android:bottomLeftRadius="0dip" 
    android:bottomRightRadius="0dip" 
    android:topLeftRadius="10dip" 
    android:topRightRadius="10dip" /> 

</shape> 
+1

謝謝,它成功地運行 – AndroSco