diff options
author | 2014-01-27 14:50:02 +0900 | |
---|---|---|
committer | 2014-01-27 18:25:25 +0900 | |
commit | 148dedbc5dfa22d6db30b28ae9ede139206af429 (patch) | |
tree | 103829122ecd4a29abe0c6011b7a8a2c2f1983ba /java/res/layout | |
parent | f3ca92dd33254e0c7cc87e9ffac0cfc41c4ea3f5 (diff) | |
download | latinime-148dedbc5dfa22d6db30b28ae9ede139206af429.tar.gz latinime-148dedbc5dfa22d6db30b28ae9ede139206af429.tar.xz latinime-148dedbc5dfa22d6db30b28ae9ede139206af429.zip |
Refactor SuggestionsStripLayoutHelper class
Bug: 9126496
Change-Id: I8bede13c8745fbcad68099d882681ca4f2326d14
Diffstat (limited to 'java/res/layout')
-rw-r--r-- | java/res/layout/suggestions_strip.xml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/java/res/layout/suggestions_strip.xml b/java/res/layout/suggestions_strip.xml index 908e30522..2ffac179c 100644 --- a/java/res/layout/suggestions_strip.xml +++ b/java/res/layout/suggestions_strip.xml @@ -25,4 +25,19 @@ android:orientation="horizontal" android:layout_width="match_parent" android:layout_height="match_parent" /> + <LinearLayout + android:id="@+id/add_to_dictionary_strip" + android:orientation="horizontal" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:visibility="invisible"> + <include + layout="@layout/suggestion_word" + android:id="@+id/word_to_save" /> + <include + layout="@layout/suggestion_divider" /> + <include + layout="@layout/hint_add_to_dictionary" + android:id="@+id/hint_add_to_dictionary" /> + </LinearLayout> </merge> |