我的布局文件如下
<?xml version="1.0" encoding="UTF-8" ?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
tools:context=".LimeText" >
<TextView
android:id="@+id/file_title"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
***android:background="@color/red"***
android:text="@string/untitled" />
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/scroll"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fadingEdge="none">
<EditText
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/file_content"
***android:background="@android:color/white"***
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dip"
android:fadingEdge="none"
android:scrollbars="vertical|horizontal"
android:gravity="top"
android:autoText="false"
android:capitalize="none" />
</ScrollView>
</LinearLayout>
但无论我如何更改背景,EditText
的背景总是保持黑色,而 'TextView
的背景总是灰色。灰色TextView
是之前设置的,#CCCCCC,但现在我想将其更改为另一个color
,它不能。