我有一個XML定義的TextView,我想設置背景顏色和邊框。 我遇到的問題是,在XML中我已經使用android:background
來設置邊框資源,所以我不能再次使用它作爲背景顏色。 有人可以引導我正確的方向嗎?設置文本的邊框和背景顏色查看
Border.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
<solid android:color="#ffffff" />
<stroke android:width="1dip" android:color="#7F000000"/>
</shape>
的TextView
<TextView
android:id="@+id/editor_title"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:background="@drawable/title_border"
android:padding="5dp"
android:text="@string/editor_title"
android:textAppearance="?android:attr/textAppearanceMedium" />