dialogCreateInput
Data de postagem: 28/06/2012 00:01:05
dialogCreateInput(
String title[optional, default Value]: title of the input box,
String message[optional, default Please enter value:]: message to display
above the input box,
String defaultText[optional]: text to insert into the input box,
String inputType[optional]: type of input data, ie number or text)
Create a text input dialog.
Exemplo:
$droid->dialogCreateInput("dialogCreateInput","pergunta","conteudo");
$droid->dialogSetPositiveButtonText("OK");
$droid->dialogShow();
print_r($droid->dialogGetResponse());