Add OnBindEditTextListener stub

This commit is contained in:
arkon 2020-06-06 11:59:57 -04:00
parent 1333b39159
commit a59641210e
1 changed files with 12 additions and 0 deletions

View File

@ -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);
}
}