Files
android_translation_layer/src/api-impl/android/content/DialogInterface.java

26 lines
613 B
Java
Raw Normal View History

package android.content;
public interface DialogInterface {
/** The identifier for the positive button. */
int BUTTON_POSITIVE = -1;
/** The identifier for the negative button. */
int BUTTON_NEGATIVE = -2;
/** The identifier for the neutral button. */
int BUTTON_NEUTRAL = -3;
public void dismiss();
public interface OnDismissListener {
void onDismiss(DialogInterface dialog);
}
public interface OnClickListener {
void onClick(DialogInterface dialog, int which);
}
2023-01-09 12:07:57 +01:00
public interface OnShowListener {
}
public interface OnCancelListener {
}
public interface OnMultiChoiceClickListener {
}
}