물먹는산세베리아

[3-1] android:background, padding, clickcable, enabled속성 본문

OS/Android

[3-1] android:background, padding, clickcable, enabled속성

suntall 2021. 10. 8. 22:32

android:background

 

background에 색을 지정해줘도 적용되지 않음

 

여기에 하는 건 잘 됨

 

밑(Button 쪽)에서 적용되지 않는 이유는 이 프로젝트에 적용된 테마 때문

 

MaterialComponents 테마 사용할 경우 여기서 지정된 버튼 색만 사용할 수 있음

내가 지정한 거 무시됨

 

MaterialComponents → AppCompat로 수정

 

잘됨

 

android:padding 

주로 레이아웃에 지정

 

 

android:clickable, enabled

enabled="false" 때문에 버튼1의 색상이 회색으로 바뀜 / 위젯동작여부

 

android:clickable="false"는 버튼은 클릭이 안됨 / 클릭, 터치 가능하도록

 

버튼5는 clickable의 기본값이 true니까 클릭이 되어야 함 (근데 안됨 왜안되지)

'OS > Android' 카테고리의 다른 글

[4-3] 위젯: TextView, CheckBox, RadioButton, ImageView, ImageButton  (0) 2021.10.11
[4-2] 위젯: Button, EditText  (0) 2021.10.11
[4-1] 위젯: 텍스트뷰 TextView  (0) 2021.10.11
[3-3] Constraint Layout  (0) 2021.10.10
[3-2] LinearLayout  (0) 2021.10.09