Android 가 ImageButton 을 눌 렀 을 때'누 르 기'효과 가 실 현 됩 니 다.

Android 가 ImageButton 을 눌 렀 을 때'누 르 기'효과 가 실 현 됩 니 다.
1 이미지 Button 에 그림 을 추가 한 후 테두리 가 있 습 니 다.그림 이 버튼 위 에 붙 어 있 는 것 처럼 보 입 니 다.얼마나 못 생 겼 는 지,얼마나 못 생 겼 는 지.
해결 방법:ImageButton 배경 을 투명 하 게 설정 합 니 다:\#0000
2.Button 을 사용 할 때 사용자 에 게'누 르 기'효 과 를 주기 위해 두 가지 실현 방식 이 있 습 니 다.
A.

imageButton.setOnTouchListener(new OnTouchListener(){   
            @Override  
            public boolean onTouch(View v, MotionEvent event) {   
                if(event.getAction() == MotionEvent.ACTION_DOWN){   
                    //              
                    v.setBackgroundResource(R.drawable.pressed);   
                }else if(event.getAction() == MotionEvent.ACTION_UP){   
                    //           
                    v.setBackgroundResource(R.drawable.released);   
                }   
                return false;   
            }   
        });  
B.

<?xml version="1.0" encoding="UTF-8"?>  
<selector xmlns:android="http://schemas.android.com/apk/res/android">  
  <item android:state_pressed="false" android:drawable="@drawable/button_add" />  
  <item android:state_pressed="true"  android:drawable="@drawable/button_add_pressed" />  
  <item android:state_focused="true"  android:drawable="@drawable/button_add_pressed" />  
  <item android:drawable="@drawable/button_add" />  
</selector>  
읽 어 주 셔 서 감사합니다. 여러분 에 게 도움 이 되 기 를 바 랍 니 다.본 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!

좋은 웹페이지 즐겨찾기