This Dialog box will appear while you exiting your application when you edit or add some text in your screen which contains Text Field, Rich Text Field, or Basic Edit Field. To disable this dialog box, you need to overwrite onsaveprompt to return false.
CODE
public boolean onSavePrompt()
{
return true;
}
No comments:
Post a Comment