Android ImageButton - 确定当前设置的资源

时间:2010-06-30 07:43:50

标签: android resources imagebutton drawable

有没有办法可以在任何给定时间找到特定ImageButton设置的资源?

例如:我有一个我设置为R.drawable.btn_on onCreate的ImageButton。稍后,在某些时候,ImageButton将设置为R.drawable.btn_off。我希望能够在我的代码中检查ImageButton设置的资源。

由于 克里斯

4 个答案:

答案 0 :(得分:15)

只需使用setTag()getTag()关联并检索ImageView的自定义数据。

答案 1 :(得分:3)

您可以将自己的类定义为ImageButton的子级,添加私有int变量并在调用setImageResource(int)时设置它。类似的东西:

public class MyImageButton extends ImageButton {

    private int mImageResource = 0;

    @Override
    public void setImageResource (int resId) {
        mImageResource = resId;
        super.setImageResource(resId);
    }

    public int getImageResource() {
        return mImageResource;
    }
}

我没有测试它,但是你明白了 - 然后你可以在你的按钮上调用getImageResource(),假设它之前是用setImageResource()设置的。

答案 2 :(得分:0)

我不知道如何直接访问资源,但是对于你想要实现的目标,仅仅获得状态就不够了吗?

    ImageButton btn = (ImageButton) findViewById(R.id.btn);

    int [] states = btn.getDrawableState();
    for (int i : states) {
        if (i == android.R.attr.state_pressed) {
            Log.v("btn", "Button in pressed state");
        }
    }

http://developer.android.com/reference/android/R.attr.html#state_pressed

答案 3 :(得分:0)

android docs上的文档不正确。这里指出pickDropPoint.getDrawableState()[android.R.attr.state_pressed]返回truefalse,而是返回10**int**

我必须执行以下操作才能使其正常工作

            <ImageButton
            android:id="@+id/pickDropPoint"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_weight="6"
            android:background="#EEeeeee4"
            android:contentDescription="pick or drop point"
            android:src="@drawable/pickupdrop" />

用于压感的可绘制xml

<?xml version="1.0" encoding="utf-8"?>

<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:src="@drawable/start32" android:state_pressed="true"/>
    <item android:src="@drawable/end32" android:state_pressed="false"/>
    <corners
        android:bottomLeftRadius="3dp"
        android:bottomRightRadius="3dp"
        android:topLeftRadius="3dp"
        android:topRightRadius="3dp" />

</selector>

在代码中,您不需要@slup

建议的for循环
whichPoint = (pickDropPoint.getDrawableState()[android.R.attr.state_pressed] > 1 ? PICKUP : DROP);