본문 바로가기
프로그래밍/Android(Java)

[Android] 버튼이 눌리는 효과 만들기

by 쿼카퀀트 2019. 9. 29.
728x90
Button.setOnTouchListener(new OnTouchListener(){
  public boolean onTouch(View v, MotionEvent event){
    if(event.getAction()==MotionEvent.ACTION_DOWN){
      v.setPadding(10,10,10,10);
      v.setAlpha(0.55f);
    }else if(event.getAction()==MotionEvent.ACTION_UP){
      V.setPadding(0,0,0,0);
      v.setAlpha(1.0f);
      //* 여기에 버튼 기능 넣으면 됨
    }
  }
  
});
728x90

댓글