Notice
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- html5
- 자동 생성
- php 시큐어코딩
- 안드로이드 푸시
- Mail Server
- 설치
- xe
- android 효과음
- 폼메일
- 안드로이드 푸쉬
- curl
- chart.js
- php 취약점
- not working
- UML
- 자바스크립트
- 우분투
- WebView
- FCM
- dovecot
- 안드로이드 gcm
- C# IO
- C#
- javascript
- PHP
- roundcube
- soundpool
- Android
- 안드로이드
- mysql
Archives
- Today
- Total
그러냐
android 버튼 눌림 클릭 효과 본문
반응형
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
반응형
'android' 카테고리의 다른 글
Android – Service 중복 실행 문제 해결 (0) | 2017.06.21 |
---|---|
UncaughtExceptionHandler를 이용한 앱 비정상 종료시 Log전송 및 재실행 하기 (0) | 2017.06.21 |
RuntimeException - TransactionTooLargeException webview savestate 죽는 문제 (0) | 2017.06.07 |
webview 홈 버튼 재시작 (0) | 2017.04.04 |
webview 쿠키 설정 (0) | 2017.04.03 |