diff options
author | 2015-07-11 02:28:19 +0000 | |
---|---|---|
committer | 2015-07-11 02:28:19 +0000 | |
commit | 4d7a7780395a2376b566452646d1a241e165c3bf (patch) | |
tree | 6456988692feae67f5835973ac6640dd26865f33 /java/res/layout | |
parent | baec6ce1abec381f5e2e69c032ca0cd460592266 (diff) | |
parent | 8c2591eec80dbe44158b1613cd96056057a41139 (diff) | |
download | latinime-4d7a7780395a2376b566452646d1a241e165c3bf.tar.gz latinime-4d7a7780395a2376b566452646d1a241e165c3bf.tar.xz latinime-4d7a7780395a2376b566452646d1a241e165c3bf.zip |
am 8c2591ee: Bring back shortcuts and add to dictionary UI
* commit '8c2591eec80dbe44158b1613cd96056057a41139':
Bring back shortcuts and add to dictionary UI
Diffstat (limited to 'java/res/layout')
-rw-r--r-- | java/res/layout/user_dictionary_add_word_fullscreen.xml | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/java/res/layout/user_dictionary_add_word_fullscreen.xml b/java/res/layout/user_dictionary_add_word_fullscreen.xml index cbdfba67d..baaaf7e6d 100644 --- a/java/res/layout/user_dictionary_add_word_fullscreen.xml +++ b/java/res/layout/user_dictionary_add_word_fullscreen.xml @@ -44,6 +44,26 @@ android:columnCount="2" > <TextView + android:id="@+id/user_dictionary_add_shortcut_label" + style="?android:attr/textAppearanceSmall" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="start|center_vertical" + android:text="@string/user_dict_settings_add_shortcut_option_name" /> + + <EditText + android:id="@+id/user_dictionary_add_shortcut" + android:layout_width="wrap_content" + android:layout_gravity="fill_horizontal|center_vertical" + android:layout_marginBottom="8dip" + android:layout_marginStart="8dip" + android:layout_marginTop="8dip" + android:hint="@string/user_dict_settings_add_shortcut_hint" + android:imeOptions="flagNoFullscreen" + android:inputType="textNoSuggestions" + android:maxLength="@integer/config_user_dictionary_max_word_length" /> + + <TextView android:id="@+id/user_dictionary_add_locale_label" style="?android:attr/textAppearanceSmall" android:layout_width="wrap_content" @@ -62,4 +82,4 @@ android:visibility="gone" /> </GridLayout> -</LinearLayout>
\ No newline at end of file +</LinearLayout> |