You've already forked android_translation_layer
mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-10-27 11:48:10 -07:00
29 lines
676 B
Java
29 lines
676 B
Java
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 void cancel();
|
|
|
|
public interface OnDismissListener {
|
|
void onDismiss(DialogInterface dialog);
|
|
}
|
|
public interface OnClickListener {
|
|
void onClick(DialogInterface dialog, int which);
|
|
}
|
|
public interface OnShowListener {
|
|
void onShow(DialogInterface dialog);
|
|
}
|
|
public interface OnCancelListener {
|
|
}
|
|
public interface OnMultiChoiceClickListener {
|
|
}
|
|
}
|