Nuke Olaf - Log Store
[Android] 안드로이드 - Textview 에 버튼같은 효과 주기 본문
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="15sp"
android:text="텍스트"
android:clickable="true"
android:focusable="true" />
TextView 에 clickable 과 focusable 속성 을 추가하면, TextView 를 눌렀을때 버튼과 같은 효과를 줄 수 있다고 한다.
focusable 의 focus 란, 다음 키입력을 받을 뷰가 누구인지를 가리키는 표식이다. 키보드 이벤트는 포커스를 가진 뷰에게만 전달된다. 안드로이드는 포커스 표시를 무조건 하지 않고 터치 모드에 따라 표시 여부를 결정한다. 방향키를 한번 누르면 일반 모드로 전환되면서 포커스를 가진 버튼이 포커스색으로 변한다.
안드로이드 포커스 처리 관련 포스팅 : https://dreamchallenger.blogspot.com/2011/02/focus.html
참고 사이트 >>>
https://dreamchallenger.blogspot.com/2011/02/focus.html
https://dev-imaec.tistory.com/17
'Android' 카테고리의 다른 글
Cannot inline bytecode built with JVM target 1.8 into bytecode that is being built with JVM target 1.6. Please specify proper '-jvm-target' option (0) | 2020.04.08 |
---|---|
[Android] 안드로이드 - 이용약관 동의 체크박스 알고리즘 만들기 (0) | 2020.03.31 |
[Android] 안드로이드 커스텀 체크박스 만들기 (0) | 2020.03.31 |
[Android] 안드로이드 - 현재 시간 가져오기, 시간 계산하기 (0) | 2020.03.31 |
[Android] 안드로이드 - 기기 단말 정보 가져오기 (0) | 2020.03.31 |
Comments