私のプロジェクトでは、「src」属性がセレクターである1つのImageButtonを持つフラグメントがあります。
XML レイアウト (foo.xml) は次のとおりです。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_vote_down"
android:id="@+id/foo_btn" />
</LinearLayout>
ここではセレクター (ic_vote_down.xml)
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/ic_blue" android:state_enabled="true"/>
<item android:drawable="@drawable/ic_red" android:state_enabled="false" />
</selector>
フラグメント本体はほとんど空です: 私はこれだけを行います
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,Bundle savedInstanceState) {
View v = inflater.inflate(R.layout.foo, container, false);
//v.findViewById(R.id.foo_btn).setEnabled(false);
return v;
}
アプリの起動時に青い画像が表示され、ボタンを無効にすると赤い画像が表示されることを期待していますが、逆の結果が得られます。何か不足していますか?