2012年12月11日

在android layout加入外框

一般網路search到的資訊都是教人使用table layout
但是我們也可以使用shape的方式
在指定的元件下加入外框


首先先在drawable的資料夾下建立myborder的xml檔
程式碼如下

myborder.xml
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#00000000"/>
<stroke android:width="1dp" android:color="#808080"/>
<padding android:left="1dp" android:top="1dp" android:right="1dp" android:bottom="1dp" />
</shape>

然後在你所要加入外框的元件
backgroound設定為myborder外框效果即可顯示
android:background="@drawable/myborder"

沒有留言:

張貼留言