Android开发(三)——Android布局中实现圆角边框

设置corners_bg.xml(设置边框圆角可以在drawable-mdpi目录里定义一个xml):

<?xml version="1.0" encoding="utf-8"?>  

<shape xmlns:android="http://schemas.android.com/apk/res/android">    

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

    <corners android:topLeftRadius="10dp"  

             android:topRightRadius="10dp"   

             android:bottomRightRadius="10dp"  

             android:bottomLeftRadius="10dp"/>    

</shape>

引用corners_bg.xml:

android:background="@drawable/corners_bg"

应用范例:

Android开发(三)——Android布局中实现圆角边框
<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

    android:layout_width="match_parent"

    android:layout_height="match_parent"

    android:background="#E1E0DE"

    android:orientation="vertical" >

 

    <TextView

        android:id="@+id/textView1"

        android:layout_width="match_parent"

        android:layout_height="50dp"

        android:background="#2B3439"

        android:gravity="center"

        android:text="发现"

        android:textColor="#FFFFFF"

        android:textSize="20sp" />

 

    <LinearLayout

        android:id="@+id/login_div"

        android:layout_width="fill_parent"

        android:layout_height="50dp"

        android:layout_margin="10dp"

        android:background="@drawable/corners_bg"

        android:gravity="center_vertical"

        android:padding="10dp" >

 

        <ImageView

            android:id="@+id/imageView1"

            android:layout_width="wrap_content"

            android:layout_height="wrap_content"

            android:src="@drawable/find_more_friend_photograph_icon" />

 

        <TextView

            android:id="@+id/textView2"

            android:layout_width="wrap_content"

            android:layout_height="wrap_content"

            android:layout_marginLeft="14dp"

            android:text="朋友圈"

            android:textColor="#000"

            android:textSize="18sp" />

    </LinearLayout>

 

    <LinearLayout

        android:layout_width="fill_parent"

        android:layout_height="101dp"

        android:layout_margin="10dp"

        android:background="@drawable/corners_bg"

        android:orientation="vertical"

        android:padding="10dp" >

 

        <LinearLayout

            android:layout_width="wrap_content"

            android:layout_height="50dp" >

 

            <ImageView

                android:layout_width="wrap_content"

                android:layout_height="wrap_content"

                android:src="@drawable/find_more_friend_scan" />

 

            <TextView

                android:layout_width="wrap_content"

                android:layout_height="wrap_content"

                android:layout_marginLeft="14dp"

                android:text="扫一扫"

                android:textColor="#000"

                android:textSize="18sp" />

        </LinearLayout>

 

        <LinearLayout

            android:layout_width="wrap_content"

            android:layout_height="50dp"

            android:layout_centerVertical="true" >

 

            <ImageView

                android:layout_width="wrap_content"

                android:layout_height="wrap_content"

                android:src="@drawable/come_from_shake" />

 

            <TextView

                android:layout_width="wrap_content"

                android:layout_height="wrap_content"

                android:layout_marginLeft="14dp"

                android:text="摇一摇"

                android:textColor="#000"

                android:textSize="18sp" />

        </LinearLayout>

    </LinearLayout>

 

    <LinearLayout

        android:layout_width="fill_parent"

        android:layout_height="101dp"

        android:layout_margin="10dp"

        android:background="@drawable/corners_bg"

        android:orientation="vertical"

        android:padding="10dp" >

 

        <LinearLayout

            android:layout_width="wrap_content"

            android:layout_height="50dp" >

 

            <ImageView

                android:layout_width="wrap_content"

                android:layout_height="wrap_content"

                android:src="@drawable/find_more_friend_near_icon" />

 

            <TextView

                android:layout_width="wrap_content"

                android:layout_height="wrap_content"

                android:layout_marginLeft="14dp"

                android:text="附近的人"

                android:textColor="#000"

                android:textSize="18sp" />

        </LinearLayout>

 

        <LinearLayout

            android:layout_width="wrap_content"

            android:layout_height="50dp"

            android:layout_centerVertical="true" >

 

            <ImageView

                android:layout_width="wrap_content"

                android:layout_height="wrap_content"

                android:src="@drawable/come_from_bottle" />

 

            <TextView

                android:layout_width="wrap_content"

                android:layout_height="wrap_content"

                android:layout_marginLeft="14dp"

                android:text="漂流瓶"

                android:textColor="#000"

                android:textSize="18sp" />

        </LinearLayout>

    </LinearLayout>

 

    <LinearLayout

        android:id="@+id/login_div"

        android:layout_width="fill_parent"

        android:layout_height="50dp"

        android:layout_margin="10dp"

        android:background="@drawable/corners_bg"

        android:gravity="center_vertical"

        android:padding="10dp" >

 

        <ImageView

            android:id="@+id/imageView1"

            android:layout_width="wrap_content"

            android:layout_height="wrap_content"

            android:src="@drawable/more_game" />

 

        <TextView

            android:id="@+id/textView2"

            android:layout_width="wrap_content"

            android:layout_height="wrap_content"

            android:layout_marginLeft="14dp"

            android:text="游戏中心"

            android:textColor="#000"

            android:textSize="18sp" />

    </LinearLayout>

 

</LinearLayout>
View Code

Android开发(三)——Android布局中实现圆角边框

 

转自:http://www.open-open.com/lib/view/open1379941411367.html

 

你可能感兴趣的:(Android开发)