mirror of
https://github.com/tachiyomiorg/extensions-lib.git
synced 2024-11-16 16:29:19 +01:00
Add SwitchPreferenceCompat
This commit is contained in:
parent
cc271c3249
commit
8dd92e32df
@ -2,9 +2,10 @@ package androidx.preference;
|
||||
|
||||
import android.content.Context;
|
||||
|
||||
public class CheckBoxPreference extends Preference {
|
||||
public class CheckBoxPreference extends TwoStatePreference {
|
||||
|
||||
public CheckBoxPreference(Context context) {
|
||||
super(context);
|
||||
throw new RuntimeException("Stub!");
|
||||
}
|
||||
|
||||
|
@ -0,0 +1,12 @@
|
||||
package androidx.preference;
|
||||
|
||||
import android.content.Context;
|
||||
|
||||
public class SwitchPreferenceCompat extends TwoStatePreference {
|
||||
|
||||
public SwitchPreferenceCompat(Context context) {
|
||||
super(context);
|
||||
throw new RuntimeException("Stub!");
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user