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" />