Commit 8b08286c by Kim Jinsung

THETA通信失敗時のダイアログから端末の戻るボタンタップすると、全画面インジケーター表示のまま何もできない。

parent ca98a9be
...@@ -55,6 +55,7 @@ public class AlertDialogUtil { ...@@ -55,6 +55,7 @@ public class AlertDialogUtil {
ABookAlertDialog alertDialog = createAlertDialog(context, context.getResources().getString(title), context.getResources().getString(message)); ABookAlertDialog alertDialog = createAlertDialog(context, context.getResources().getString(title), context.getResources().getString(message));
alertDialog.setNegativeButton(R.string.cancel, canOnClick); alertDialog.setNegativeButton(R.string.cancel, canOnClick);
alertDialog.setPositiveButton(R.string.ok, okOnClick); alertDialog.setPositiveButton(R.string.ok, okOnClick);
alertDialog.setCancelable(false);
alertDialog.show(); alertDialog.show();
} }
...@@ -72,7 +73,7 @@ public class AlertDialogUtil { ...@@ -72,7 +73,7 @@ public class AlertDialogUtil {
if (!isCancleButtonHidden) { if (!isCancleButtonHidden) {
alertDialog.setNegativeButton(R.string.cancel, null); alertDialog.setNegativeButton(R.string.cancel, null);
} }
alertDialog.setCancelable(false);
alertDialog.setPositiveButton(R.string.ok, okOnClick); alertDialog.setPositiveButton(R.string.ok, okOnClick);
alertDialog.show(); alertDialog.show();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment