diff options
author | 2011-07-28 13:49:57 -0700 | |
---|---|---|
committer | 2011-07-28 13:49:57 -0700 | |
commit | e4b445f1ceb95af95d9572b9568a50d573e876da (patch) | |
tree | 19de497bead8ce24310f40971103b38896b114f1 /java/src | |
parent | 0a5345c7b6e9282ea401a4017c2c2f9835e623b1 (diff) | |
download | latinime-e4b445f1ceb95af95d9572b9568a50d573e876da.tar.gz latinime-e4b445f1ceb95af95d9572b9568a50d573e876da.tar.xz latinime-e4b445f1ceb95af95d9572b9568a50d573e876da.zip |
Remove icon and negative button from dialogs
Bug: 5092028
Change-Id: I25b86c6e74e380e6cee4998bfe494bdafb611f36
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index d9d421411..9ad333919 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -2163,8 +2163,6 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar } }; final AlertDialog.Builder builder = new AlertDialog.Builder(this) - .setIcon(R.drawable.ic_dialog_keyboard) - .setNegativeButton(android.R.string.cancel, null) .setItems(items, listener) .setTitle(title); showOptionDialogInternal(builder.create()); @@ -2191,8 +2189,6 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar } }; final AlertDialog.Builder builder = new AlertDialog.Builder(this) - .setIcon(R.drawable.ic_dialog_keyboard) - .setNegativeButton(android.R.string.cancel, null) .setItems(items, listener) .setTitle(title); showOptionDialogInternal(builder.create()); |