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
implement android.app.AlertDialog using GtkDialog
This commit is contained in:
@@ -1,10 +1,20 @@
|
||||
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 interface OnDismissListener {
|
||||
}
|
||||
public interface OnClickListener {
|
||||
void onClick(DialogInterface dialog, int which);
|
||||
}
|
||||
public interface OnShowListener {
|
||||
}
|
||||
public interface OnCancelListener {
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user