アプリのユーザーに現在どのフィールドがフォーカスされているかを示すために、現在の状態に応じて一部のフィールドの背景色を変更しようとしていますが、Android の色状態リスト リソースを理解するのに問題があります。
例を見つけました(申し訳ありませんが、URLは機能しなくなりました) 。まったく同じことを試してみると、つまりtextColorを調整したい場合はうまくいきます。ただし、背景色を調整するなど、少しだけ異なることを試みると、うまくいかず、その理由がわかりません。なんでこんなに矛盾してるの???
私がやろうとしていることを理解しやすくするために、その他を追加します。.xml ファイル:
AndroidManifest.xml
ファイル:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="mmo.android.test"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".Test"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
Test-Activity
:_
package mmo.android.test;
import android.app.Activity;
import android.os.Bundle;
public class Test extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
}
res/values/strings.xml
:_
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="hello">Hello World, Test!</string>
<string name="app_name">Test</string>
</resources>
res/color/button_test_color.xml
:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" android:color="#f0f"/> <!-- pressed -->
<item android:state_focused="true" android:color="#ff0"/> <!-- focused -->
<item android:color="#000"/> <!-- default -->
</selector>
そして最後に私のres/layout/main.xml
ファイル:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="foobar"
android:textColor="@color/button_test_color"
android:background="#f00"
/>
<!--
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="foobar"
android:textColor="#f00"
android:background="@color/button_test_color"
/>
-->
</LinearLayout>
ここに示すようにこれを実行すると、機能します。つまり、ボタンがフォーカスされているか、押されているかなどに応じてテキストの色が変化するボタンが表示されます。
textColor と background の属性値を反転させた下のボタンのコメントを外すと、次のような例外が発生します。
... <item> tag requires a 'drawable' attribute or child tag defining a drawable
ここで何が欠けているのですか?その色の状態のリストがテキストの色として受け入れられるのに、背景色として受け入れられないのはなぜですか? ビューの状態に応じてビューの背景色を指定するにはどうすればよいですか?