Java Code Examples for android.app.Activity#showDialog()

The following examples show how to use android.app.Activity#showDialog() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: DialogUtils.java    From tilt-game-android with MIT License 5 votes vote down vote up
@Deprecated
public static void showDialogOnUiThread(final Activity pActivity, final int pDialogID, final Bundle pBundle) {
	if (ActivityUtils.isOnUiThread()) {
		pActivity.showDialog(pDialogID, pBundle);
	} else {
		pActivity.runOnUiThread(new Runnable() {
			@Override
			public void run() {
				pActivity.showDialog(pDialogID, pBundle);
			}
		});
	}
}