public class GGInputDialog
extends java.lang.Object
| Modifier and Type | Method and Description |
|---|---|
static java.lang.String |
show(android.app.Activity activity,
java.lang.String title,
java.lang.String prompt,
java.lang.String init)
Same as show(String title, String prompt, String init) with given activity.
|
static java.lang.String |
show(java.lang.String title,
java.lang.String prompt)
Same as show(String title, String prompt, String init) with init = "".
|
static java.lang.String |
show(java.lang.String title,
java.lang.String prompt,
java.lang.String init)
Halts the main thread and shows the modal dialog box and a Ok and
Cancel button.
|
public static java.lang.String show(android.app.Activity activity,
java.lang.String title,
java.lang.String prompt,
java.lang.String init)
activity - the activity where to show the dialogtitle - the title text of the dialog boxprompt - the prompt text of the dialog boxinit - the text shown in the edit field when the box pops-uppublic static java.lang.String show(java.lang.String title,
java.lang.String prompt,
java.lang.String init)
title - the title text of the dialog boxprompt - the prompt text of the dialog boxinit - the text shown in the edit field when the box pops-uppublic static java.lang.String show(java.lang.String title,
java.lang.String prompt)