티스토리 뷰

Android/UI

Switch (On/Off)

parkho79 2019. 8. 21. 09:14
300x250
300x250



 

Switch 는 선택 or 해제 두 가지 상태를 제공한다.

- 비슷한 widget 으로 ToggleButton 이 있다.

 

사용자에게 on/off 상태를 슬라이더로 표시해준다.

일반적으로 사운드, 블루투스, 와이파이 on/off 에 많이 쓰인다.



How to

◼ Switch code in XML

 

◼ Switch code in JAVA



Attributes

◼ id

id 는 해당 Switch 를 유일하게 식별할 수 있는 속성이다.

1
2
3
4
<Switch
        android:id="@+id/simple_switch"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
cs



◼ checked

Switch 에 "true" or "false" 로 선택 or 해제 상태를 설정한다.

기본값은 "false" 이다.

 



◼ text

Switch 에 표시할 text 를 설정한다.

 



◼ textOn & textOff

Switch on/off 시 표시할 text 설정

 - textOff : switch 가 off 일 때 표시할 text

 - textOn : switch 가 on 일 때 표시할 text

 - API 21 이상부터는 showText true 를 해야 text 가 표기된다.

 

 

 

◼ gravity

Text 를 정렬할 수 있는 속성이다.

 - layout_width, layout_height 이 wrap_content 이면 text 가 정렬될 공간이 없어 정렬이 안된다.

 - gravity 를 지정하지 않으면 기본 속성인 left, top 이 적용된다.

[Android/Layout] - TextView gravity (TextView gravity 와 동일하다.)

 

 



◼ textColor

Text 의 색상을 설정한다.

- “#argb”, “#rgb”, “#rrggbb”, or “#aarrggbb” 형태로 지정할 수 있다.

 



◼ textSize

Text 의 크기를 설정한다.

- sp(scale independent pixel) or dp(density pixel) 로 설정 할 수 있다.

 



◼ textStyle

Text 의 style 을 설정한다.

- "bold"(굵게), "italic"(이태릭), "normal"(기본) 을 설정할 수 있고 "|" 로 2개 이상의 설정을 할 수 있다.

 



◼ background

Switch 의 배경색을 설정한다.

- color 값이나 drawable 을 설정할 수 있다.

 

◼ padding

Switch 의 왼쪽, 오른쪽, 위, 아래 padding 을 설정한다.

 

 



◼ drawableBottom, drawableTop, drawableLeft, drawableRight

drawable 객체를 표시할 위치를 지정한다.

 



728x90

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

ProgressBar  (0) 2019.08.27
ToggleButton (On/Off)  (0) 2019.08.22
TimePicker  (0) 2019.08.20
DatePicker  (0) 2019.08.12
ImageView scaleType  (0) 2019.08.07
댓글