diff options
author | 2015-07-13 15:32:33 +0000 | |
---|---|---|
committer | 2015-07-13 15:32:33 +0000 | |
commit | c3f9f1d50b0e03deb78eff17d0ec2ffd522b792c (patch) | |
tree | 2e4fa29840402692105ad74f94c8d60793334a52 /java/res | |
parent | 91886a31fbafea33a4e94722a0f271639de4eb4b (diff) | |
parent | 4d7a7780395a2376b566452646d1a241e165c3bf (diff) | |
download | latinime-c3f9f1d50b0e03deb78eff17d0ec2ffd522b792c.tar.gz latinime-c3f9f1d50b0e03deb78eff17d0ec2ffd522b792c.tar.xz latinime-c3f9f1d50b0e03deb78eff17d0ec2ffd522b792c.zip |
am 4d7a7780: am 8c2591ee: Bring back shortcuts and add to dictionary UI
* commit '4d7a7780395a2376b566452646d1a241e165c3bf':
Bring back shortcuts and add to dictionary UI
Diffstat (limited to 'java/res')
-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> |