在我的项目中,我有一个包含1个ImageButton的片段,其“src”属性是一个选择器。
这里是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;
}
我期望在应用程序启动时看到蓝色图像,如果我禁用按钮,则会看到红色图像,但我得到相反的结果。我错过了什么吗?