以下の私のレイアウトファイル
<?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
、できません。