그러냐

android 버튼 눌림 클릭 효과 본문

android

android 버튼 눌림 클릭 효과

관절분리 2017. 6. 21. 15:29
반응형

res/drawable폴더 생성 후 안에 button_state.xml (이름은 자유)로 만든 후 


<?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/눌렸을 경우 이미지"/>

    <item android:drawable="@drawable/기본 이미지"/>

</selector>


버튼 쪽


<Button android:background="@drawable/button_state">




이미지없이 bg 색, 글씨색만 변경시킬경우


http://dutax.tistory.com/2

반응형