1. 程式人生 > >Android---給Linearlayout設定邊框+弧度角

Android---給Linearlayout設定邊框+弧度角

1.第一步需要在drawable下建立一個xml檔案,程式碼如下

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
//這裡是Linearlayout佈局的背景顏色
    <solid android:color="#FFFFFF" />
//這裡是設定邊框線的粗細和顏色
    <stroke
        android:width="0.03dp"
        android:color="@color/gray"
/>
<padding android:bottom="1dp" android:left="1dp" android:right="1dp" android:top="1dp" /> //角的話,裡邊有引數可以單獨設定 <corners android:radius="10dp" /> </shape>

2.在要設定邊框的Linearlayout中加入:android:background=“@drawable/上面xml的名字”

  <LinearLayout
            android:id
="@+id/aaa" android:layout_width="wrap_content" android:layout_height="match_parent" androidbackground=“@drawable/上面xml的名字” android:gravity="center_vertical" >