Use SwitchCompat from AppCompat or SwitchMaterial from Material library

Posted by Eun JongHyeok on July 26, 2021

Switch를 사용할 경우 다음과 같은 경고메시지가 뜨는 것을 확인할 수 있다.

screenshot_switch.png

이는 안드로이드에서 제공하는 스위치가 버전에 따라 디자인이 다르기 때문에 이를 알려주는 경고창이 뜨는 것이며

https://i.stack.imgur.com/hr6nk.png

stackoverflow

1
2
3
4
5
6
7
8
9
<androidx.appcompat.widget.SwitchCompat
        android:id="@+id/round_up_switch"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:checked="true"
        android:text="@string/round_up_tip"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@id/tip_options" />

SwitchCompat을 사용하면 모든 안드로이드 버전에서 같은 디자인을 사용할 수 있다.


XML
Warning

← Previous Post Next Post