Add support for AndroidX preferences (#1971)

* Add stubs for AndroidX preferences

* Update extensions for AndroidX preferences
This commit is contained in:
arkon
2020-01-05 11:16:12 -05:00
committed by GitHub
parent e9d1479dd0
commit 98df581cfd
34 changed files with 470 additions and 54 deletions

View File

@ -0,0 +1,19 @@
package androidx.preference;
import android.content.Context;
public class EditTextPreference extends DialogPreference {
public EditTextPreference(Context context) {
throw new RuntimeException("Stub!");
}
public String getText() {
throw new RuntimeException("Stub!");
}
public void setText(String text) {
throw new RuntimeException("Stub!");
}
}