1. 程式人生 > >如何為TextView新增邊框

如何為TextView新增邊框

首先大家需要知道一個概念:android:background的值是一個xml檔案。這就意味著如果我們想要一個框,就要定義一個xml佈局檔案,然後把佈局檔案的內容賦給TextView的background屬性。

操作步驟如下:

第一步:定義xml檔案,命名為setbar_bg.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="2dip" android:color="#ff000000" />

</shape>

第二部,把xml佈局放入drawable檔案目錄下,同時賦給background屬性

android:background="@drawable/setbar_bg"

然後就成功了