<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> <!-- shape的類型含有: 1.rectangle 長方形、矩形 2.oval 橢圓形、卵形 3.line 線 4.ring 環形 --> <!-- 圓角,Layout佈局圓角幅度設定值 --> <corners android:radius="5dip" /> <!-- 外框,框線粗細,框線顏色 --> <stroke android:width="1.0dip" android:color="@color/background_gray" /> </shape>
layout設定background
<LinearLayout android:id="@+id/layout_xxx" android:background="@drawable/shape_rectangle_gray" android:gravity="center_horizontal" android:orientation="vertical" android:padding="2dp"> </LinearLayout>
沒有留言:
張貼留言