mirror of
https://github.com/tachiyomiorg/extensions-lib.git
synced 2024-11-05 03:05:08 +01:00
Add OnBindEditTextListener stub
This commit is contained in:
parent
1333b39159
commit
a59641210e
@ -1,6 +1,7 @@
|
||||
package androidx.preference;
|
||||
|
||||
import android.content.Context;
|
||||
import android.widget.EditText;
|
||||
|
||||
public class EditTextPreference extends DialogPreference {
|
||||
|
||||
@ -16,4 +17,15 @@ public class EditTextPreference extends DialogPreference {
|
||||
throw new RuntimeException("Stub!");
|
||||
}
|
||||
|
||||
public void setOnBindEditTextListener(OnBindEditTextListener onBindEditTextListener) {
|
||||
throw new RuntimeException("Stub!");
|
||||
}
|
||||
|
||||
OnBindEditTextListener getOnBindEditTextListener() {
|
||||
throw new RuntimeException("Stub!");
|
||||
}
|
||||
|
||||
public interface OnBindEditTextListener {
|
||||
void onBindEditText(EditText editText);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user