在使用Switch控件时,Android Studio警告Warning : Use SwitchCompat from AppCompat or SwitchMaterial from Material library

应该使用SwitchCompat或者是SwitchMaterial 来代替Switch控件

以下xml为SwitchMaterial

<com.google.android.material.switchmaterial.SwitchMaterial
android:id="@+id/finish_entry_sw"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:checked="false"
android:enabled="true" />

SwitchCompat和SwitchMaterial为旧Switch控件的新版本

Switch控件在不同版本的Android系统中会呈现不同的外观,而SwitchCompat和SwitchMaterial在所有Android系统中呈现出的外观是一致的。