Skip to content
Snippets Groups Projects
Commit 7ffac033 authored by Tadashi G. Takaoka's avatar Tadashi G. Takaoka
Browse files

Make importance notice dialog cancel able

Bug: 10587358
Change-Id: I7415a6f33e6b5542718164fea1555095d23233e5
parent 2089afd2
No related branches found
No related tags found
No related merge requests found
...@@ -1185,7 +1185,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen ...@@ -1185,7 +1185,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
new AlertDialog.Builder(context, AlertDialog.THEME_HOLO_DARK); new AlertDialog.Builder(context, AlertDialog.THEME_HOLO_DARK);
builder.setMessage(R.string.important_notice_contents) builder.setMessage(R.string.important_notice_contents)
.setPositiveButton(android.R.string.ok, listener); .setPositiveButton(android.R.string.ok, listener);
showOptionDialog(builder.create(), false /* cancelable */); showOptionDialog(builder.create(), true /* cancelable */);
} }
public void displaySettingsDialog() { public void displaySettingsDialog() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment