How would I set an ImageButton to change only when

2019-05-16 09:52发布

I want to create an event to change what my image button looks like, but only when it is being pushed down. So far I have been using an onTouch listener, but that just changes it permanently. I can't find anything like an onKyeUpListener() type of thing for the button.

Does anything like this exist?

SOLVED

    final ImageButton button = (ImageButton) findViewById(R.id.ImageButton01);

    button.setOnTouchListener(new View.OnTouchListener() {

        @Override
        public boolean onTouch(View v, MotionEvent event) {

            if(event.getAction() == (MotionEvent.ACTION_UP)){
                //Do whatever you want after press
            }
            else{
                //Do whatever you want during press
            }
            return true;
        }
    });

3条回答
混吃等死
2楼-- · 2019-05-16 10:02

It's in the docs. You can define different images for different states via XML.

查看更多
再贱就再见
3楼-- · 2019-05-16 10:12

Instead of doing it manually, why don't you change the drawable of your buttons? In general, drawables can have multiple states, so if you change the drawable for certain states (like focused or selected), the operating system will handle everything for you automatically.

查看更多
对你真心纯属浪费
4楼-- · 2019-05-16 10:16

From http://developer.android.com/guide/topics/ui/ui-events.html:

onTouch() ... This is called when the user performs an action qualified as a touch event, including a press, a release, or any movement gesture on the screen (within the bounds of the item).

In other words, onTouch is also called for release events. Look at MotionEvent.getAction().

查看更多
登录 后发表回答