1

在我的项目中,我有一个带有 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;         
}

我希望在应用程序启动时看到蓝色图像,如果我禁用按钮,我希望看到红色图像,但我得到相反的结果。我错过了什么吗?

4

0 回答 0