aboutsummaryrefslogtreecommitdiffstats
path: root/java/res
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2013-05-15 11:04:40 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2013-05-15 11:04:40 -0700
commit2037d6e41dfc1d0a06f17f3f3e559d6003c1d02e (patch)
tree2196f8eed7083ecaca5c482292f26082d8724bd7 /java/res
parent6ace5215005fb888d86009999c49cd6243398f11 (diff)
parent7e22f2e374425f5676fb9eac4bfb97e211d0d487 (diff)
downloadlatinime-2037d6e41dfc1d0a06f17f3f3e559d6003c1d02e.tar.gz
latinime-2037d6e41dfc1d0a06f17f3f3e559d6003c1d02e.tar.xz
latinime-2037d6e41dfc1d0a06f17f3f3e559d6003c1d02e.zip
am 7e22f2e3: am 2cf450f4: [PB6] Encapsulate the buttons into a view
* commit '7e22f2e374425f5676fb9eac4bfb97e211d0d487': [PB6] Encapsulate the buttons into a view
Diffstat (limited to 'java/res')
-rw-r--r--java/res/layout/dictionary_line.xml20
1 files changed, 12 insertions, 8 deletions
diff --git a/java/res/layout/dictionary_line.xml b/java/res/layout/dictionary_line.xml
index a8d15ab73..9eeea697e 100644
--- a/java/res/layout/dictionary_line.xml
+++ b/java/res/layout/dictionary_line.xml
@@ -71,14 +71,18 @@
</LinearLayout>
- <Button
- android:id="@+android:id/wordlist_button"
+ <com.android.inputmethod.dictionarypack.ButtonSwitcher
+ android:id="@+android:id/wordlist_button_switcher"
android:layout_weight="0"
android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="right|center_vertical"
- android:singleLine="true"
- android:textAppearance="?android:attr/textAppearanceMedium"
- android:text="@string/install_dict" />
-
+ android:layout_height="wrap_content">
+ <Button
+ android:id="@+android:id/dict_install_button"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="right|center_vertical"
+ android:singleLine="true"
+ android:textAppearance="?android:attr/textAppearanceMedium"
+ android:text="@string/install_dict" />
+ </com.android.inputmethod.dictionarypack.ButtonSwitcher>
</LinearLayout>