15

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

2 に答える 2

30

このためのXMLドローアブルを作成する必要があります。これは、単一の背景として設定できます。これがあなたが望んでいるものです(異なる色の境界線を持つ長方形-あなたがそれを望まない場合はグラデーションを置き換えてください)。

これは「ドローアブル」フォルダに入れられます:

<?xml version="1.0" encoding="utf-8"?>
<shape
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <stroke android:width="3dp" android:color="@color/blue_button_border" />
    <gradient
      android:startColor="@color/gradient_end"
      android:endColor="@color/gradient_start"
      android:angle="-90" /> 
</shape>
于 2013-03-13T14:02:01.320 に答える
3

Java経由:

TextView c1 = new TextView(activity);
c1.setTextColor(getResources().getColor(R.color.solid_red));
c1.setText("My Text");    

TextView test = (TextView) view.findViewById(R.id.textView2);
test.setBackgroundResource(R.color.holo_green_light);

XML経由:

 <TextView
        android:text="2"
        android:textSize="200sp"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:id="@+id/textView2"
        android:style="@style/textviewStyle" 
        android:background="@android:color/holo_green_light"
        android:gravity="center"
        android:textColor="#EEEEEE"
        android:layout_alignParentRight="true" />

これは、このトピックに関するAPIページです:http://developer.android.com/guide/topics/resources/accessing-resources.html#ResourcesFromXml

于 2013-09-18T10:52:53.633 に答える