How to get a android ListView item selector to use state_pressed

笑着哭i 提交于 2020-02-04 04:15:30

问题


I want to color to background of an image View when it get pressed. I tried to do it with selector that changes the image for the different states (pressed and not pressed). The problem now is that the image replaces the previous with the exact same size and I want it be to much larger. I use a custom layout that implements checkable, and I tried also to overload the onCreateDrawableState function, but it never being called.

Help please..

This is how it looks:

before pressing:

after pressing:

This is the item list custom layout:

public class ListItem extends RelativeLayout implements Checkable, OnClickListener {

    private View mItemChecked = null;
    private ImageView imageSkinEdit = null;

    /*private static final int[] CHECKED_STATE_SET = {
        android.R.attr.state_pressed
    };*/



    public ListItem(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }

    public ListItem(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public ListItem(Context context) {
        super(context);
    }

    @Override
    protected void onFinishInflate() {
        super.onFinishInflate();
        try {
            mItemChecked = this.findViewById(R.id.itemlist_checkedd);
            imageSkinEdit = (ImageView)this.findViewById(R.id.skinEdit);
            imageSkinEdit.setOnClickListener(this);
        } catch (Exception e) {
        }
    }//onFinishInflate

    @Override
    public boolean isChecked() {
        if(mItemChecked != null) {
            return ((Checkable)mItemChecked).isChecked();
        }
        return false;
    }

    @Override
    public void setChecked(boolean checked) {
        if(mItemChecked != null) {
            if (checked) {
                mItemChecked.setVisibility(View.VISIBLE);
            } else {
                mItemChecked.setVisibility(View.GONE);
            }
        }
    }

    @Override
    public void toggle() {
        if(mItemChecked != null) {
            ((Checkable)mItemChecked).toggle();
        }
    }

    @Override
    public void onClick(View v) {
        final int id = v.getId();
        switch (id) {
            case R.id.skinEdit:
                //handleEdit();
                break;
        }//switch
    }

    @Override
    public int[] onCreateDrawableState(int extraSpace) {
        Log.d("onCreateDrawableState", "onCreateDrawableState");
        return super.onCreateDrawableState(extraSpace + 1);
        /*final int[] drawableState = super.onCreateDrawableState(extraSpace + 1);
        if (isChecked()) {
            Log.d("ListItem", "isChecked");
            mergeDrawableStates(drawableState, CHECKED_STATE_SET);
        }
        return drawableState;*/
    }
}

The selector:

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item
        android:state_pressed="true"
        android:drawable="@drawable/ic_go_edit_pressed" />
    <item
        android:state_pressed="false"
        android:drawable="@drawable/ic_go_edit" />
</selector>

Image View XML:

<ImageView
        android:id="@+id/skinEdit"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"
        android:adjustViewBounds="true"
        android:scaleType="fitXY"
        android:paddingLeft="10dip"
        android:paddingRight="10dip"
        android:src="@drawable/edit_skin_selector" />

回答1:


Try calling refreshDrawableState() at the end of setChecked. That will get onCreateDrawableState to be called

  @Override
    public void setChecked(boolean checked) {
        if(mItemChecked != null) {
            if (checked) {
                mItemChecked.setVisibility(View.VISIBLE);
            } else {
                mItemChecked.setVisibility(View.GONE);
            }
        }
            refreshDrawableState();
    }



回答2:


Finally I did it using a different method. You can see it in my next question




回答3:


you should add a default state to your selector too




回答4:


    <?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true"
          android:drawable="@drawable/button_pressed" /> <!-- pressed -->
    <item android:state_focused="true"
          android:drawable="@drawable/button_focused" /> <!-- focused -->
    <item android:state_hovered="true"
          android:drawable="@drawable/button_focused" /> <!-- hovered -->
    <item android:drawable="@drawable/button_normal" /> <!-- default -->
</selector>



回答5:


I have known, that onCreateDrawableState not call i.e. ListItem has not background drawable.



来源:https://stackoverflow.com/questions/10027591/how-to-get-a-android-listview-item-selector-to-use-state-pressed

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!