设置textView的边框和背景颜色

时间:2013-03-13 13:57:11

标签: android background textview border background-color

我有一个用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" />

2 个答案:

答案 0 :(得分:30)

您应该为此创建一个XML drawable,然后可以将其设置为单个背景。这就是你想要的东西(一个具有不同颜色边框的矩形 - 如果你不想要它,可以用渐变替换。)

这将出现在你的'drawable&#39;文件夹:

<?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>

答案 1 :(得分: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