Tadashi G. Takaoka | 86e815a | 2011-06-14 16:28:57 +0900 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- |
| 3 | /* |
| 4 | ** |
| 5 | ** Copyright 2011, The Android Open Source Project |
| 6 | ** |
| 7 | ** Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | ** you may not use this file except in compliance with the License. |
| 9 | ** You may obtain a copy of the License at |
| 10 | ** |
| 11 | ** http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | ** |
| 13 | ** Unless required by applicable law or agreed to in writing, software |
| 14 | ** distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | ** See the License for the specific language governing permissions and |
| 17 | ** limitations under the License. |
| 18 | */ |
| 19 | --> |
| 20 | |
| 21 | <merge |
| 22 | xmlns:android="http://schemas.android.com/apk/res/android" |
| 23 | xmlns:latin="http://schemas.android.com/apk/res/com.android.inputmethod.latin" |
| 24 | > |
Tadashi G. Takaoka | 86e815a | 2011-06-14 16:28:57 +0900 | [diff] [blame] | 25 | <LinearLayout |
Tadashi G. Takaoka | 717a8f5 | 2011-06-27 16:57:18 +0900 | [diff] [blame] | 26 | android:id="@+id/candidates_strip" |
Tadashi G. Takaoka | b473198 | 2011-06-26 03:00:51 +0900 | [diff] [blame] | 27 | android:orientation="horizontal" |
Tadashi G. Takaoka | 74b6897 | 2011-06-30 10:09:21 +0900 | [diff] [blame] | 28 | android:layout_weight="1.0" |
| 29 | android:layout_width="0dp" |
Tadashi G. Takaoka | 3118277 | 2011-07-01 14:21:25 +0900 | [diff] [blame] | 30 | android:layout_height="match_parent" /> |
Tadashi G. Takaoka | 74b6897 | 2011-06-30 10:09:21 +0900 | [diff] [blame] | 31 | <LinearLayout |
Tadashi G. Takaoka | 717a8f5 | 2011-06-27 16:57:18 +0900 | [diff] [blame] | 32 | android:id="@+id/touch_to_save" |
| 33 | android:orientation="horizontal" |
| 34 | android:layout_width="match_parent" |
| 35 | android:layout_height="match_parent" |
| 36 | android:visibility="gone" |
| 37 | > |
| 38 | <Button |
| 39 | android:id="@+id/word_to_save" |
| 40 | android:layout_weight="1.0" |
| 41 | android:layout_width="0dp" |
| 42 | android:layout_height="match_parent" |
Tadashi G. Takaoka | b473198 | 2011-06-26 03:00:51 +0900 | [diff] [blame] | 43 | android:layout_gravity="center_vertical" |
Tadashi G. Takaoka | 717a8f5 | 2011-06-27 16:57:18 +0900 | [diff] [blame] | 44 | android:textSize="@dimen/candidate_text_size" |
| 45 | android:singleLine="true" |
| 46 | android:ellipsize="middle" |
| 47 | style="?attr/suggestionBackgroundStyle" /> |
| 48 | <include |
| 49 | layout="@layout/candidate_divider" /> |
| 50 | <TextView |
| 51 | android:layout_weight="2.0" |
| 52 | android:layout_width="0dp" |
| 53 | android:layout_height="match_parent" |
| 54 | android:gravity="left|center_vertical" |
| 55 | android:text="@string/hint_add_to_dictionary" |
| 56 | android:textSize="@dimen/candidate_text_size" |
| 57 | android:background="@null" /> |
Tadashi G. Takaoka | 86e815a | 2011-06-14 16:28:57 +0900 | [diff] [blame] | 58 | </LinearLayout> |
| 59 | </merge> |