2013年9月2日 星期一

設定圓角

1. 新增設定圓角圖形的XML在res/drawable下

ex: 新增roundcorner.xml


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

<corners android:radius="8dp" />

<solid android:color="#7fc7b299" />

</shape>

ex:


<corners android:bottomRightRadius="8dp" android:bottomLeftRadius="8dp"
     android:topLeftRadius="0dp" android:topRightRadius="0dp"/>


說明:
solid欄位設定圖形的背景顏色

2.  在layout的xml指定background為roundcorner

ex:


<View
           android:id="@+id/addFoodCategoryBackground"
    android:layout_width="100dp"
    android:layout_height="100dp"
    android:layout_marginTop="10dp"
    android:layout_marginLeft="10dp"
     android:layout_below="@+id/addFoodDateTitleImageView"
    android:layout_toRightOf="@+id/addFoodPhotoButton"
    android:background="@drawable/roundCorner"
    />
       

沒有留言:

張貼留言