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 |
Jean Chalard | b11339b | 2014-01-08 16:52:04 +0900 | [diff] [blame] | 22 | xmlns:android="http://schemas.android.com/apk/res/android"> |
Tadashi G. Takaoka | c412309 | 2011-09-05 16:15:28 +0900 | [diff] [blame] | 23 | <LinearLayout |
| 24 | android:id="@+id/suggestions_strip" |
| 25 | android:orientation="horizontal" |
Tadashi G. Takaoka | 717a8f5 | 2011-06-27 16:57:18 +0900 | [diff] [blame] | 26 | android:layout_width="match_parent" |
Tadashi G. Takaoka | 2b479cc | 2014-05-07 16:19:59 +0900 | [diff] [blame] | 27 | android:layout_height="match_parent" |
| 28 | android:layout_marginLeft="@dimen/config_suggestions_strip_horizontal_margin" |
| 29 | android:layout_marginRight="@dimen/config_suggestions_strip_horizontal_margin" /> |
Tadashi G. Takaoka | 148dedb | 2014-01-27 14:50:02 +0900 | [diff] [blame] | 30 | <LinearLayout |
| 31 | android:id="@+id/add_to_dictionary_strip" |
| 32 | android:orientation="horizontal" |
| 33 | android:layout_width="match_parent" |
| 34 | android:layout_height="match_parent" |
Tadashi G. Takaoka | 2b479cc | 2014-05-07 16:19:59 +0900 | [diff] [blame] | 35 | android:layout_marginLeft="@dimen/config_suggestions_strip_horizontal_margin" |
| 36 | android:layout_marginRight="@dimen/config_suggestions_strip_horizontal_margin" |
Tadashi G. Takaoka | 148dedb | 2014-01-27 14:50:02 +0900 | [diff] [blame] | 37 | android:visibility="invisible"> |
Tadashi G. Takaoka | c2ea3f7 | 2014-01-28 19:22:27 +0900 | [diff] [blame] | 38 | <TextView |
| 39 | android:id="@+id/word_to_save" |
| 40 | android:layout_width="match_parent" |
| 41 | android:layout_height="match_parent" |
| 42 | style="?attr/suggestionWordStyle" /> |
Tadashi G. Takaoka | 148dedb | 2014-01-27 14:50:02 +0900 | [diff] [blame] | 43 | <include |
| 44 | layout="@layout/suggestion_divider" /> |
Tadashi G. Takaoka | c2ea3f7 | 2014-01-28 19:22:27 +0900 | [diff] [blame] | 45 | <TextView |
| 46 | android:id="@+id/hint_add_to_dictionary" |
| 47 | android:layout_width="match_parent" |
| 48 | android:layout_height="match_parent" |
Tadashi G. Takaoka | 9b1a668 | 2014-01-30 16:52:29 +0900 | [diff] [blame] | 49 | android:textAlignment="viewStart" |
Tadashi G. Takaoka | c2ea3f7 | 2014-01-28 19:22:27 +0900 | [diff] [blame] | 50 | style="?attr/suggestionWordStyle" /> |
Tadashi G. Takaoka | 148dedb | 2014-01-27 14:50:02 +0900 | [diff] [blame] | 51 | </LinearLayout> |
Tadashi G. Takaoka | 8a296e4 | 2014-01-28 16:19:29 +0900 | [diff] [blame] | 52 | <LinearLayout |
| 53 | android:id="@+id/important_notice_strip" |
| 54 | android:orientation="horizontal" |
| 55 | android:layout_width="match_parent" |
Tadashi G. Takaoka | 2b479cc | 2014-05-07 16:19:59 +0900 | [diff] [blame] | 56 | android:layout_height="match_parent" |
| 57 | android:layout_marginLeft="@dimen/config_suggestions_strip_horizontal_margin" |
| 58 | android:layout_marginRight="@dimen/config_suggestions_strip_horizontal_margin"> |
Tadashi G. Takaoka | 8a296e4 | 2014-01-28 16:19:29 +0900 | [diff] [blame] | 59 | <TextView |
| 60 | android:id="@+id/important_notice_title" |
Tadashi G. Takaoka | 9706f9a | 2014-02-03 15:08:07 +0900 | [diff] [blame] | 61 | android:layout_width="match_parent" |
Tadashi G. Takaoka | 8a296e4 | 2014-01-28 16:19:29 +0900 | [diff] [blame] | 62 | android:layout_height="match_parent" |
Tadashi G. Takaoka | 28c02b4 | 2014-02-17 11:28:48 +0900 | [diff] [blame] | 63 | android:padding="6sp" |
Tadashi G. Takaoka | 36d606f | 2014-02-14 19:10:47 +0900 | [diff] [blame] | 64 | android:textSize="16sp" |
Tadashi G. Takaoka | 8a296e4 | 2014-01-28 16:19:29 +0900 | [diff] [blame] | 65 | style="?attr/suggestionWordStyle" /> |
| 66 | </LinearLayout> |
Tadashi G. Takaoka | c41d261 | 2014-05-08 10:57:48 +0900 | [diff] [blame] | 67 | <ImageButton |
| 68 | android:id="@+id/suggestions_strip_voice_key" |
| 69 | android:layout_width="@dimen/config_suggestions_strip_edge_key_width" |
| 70 | android:layout_height="fill_parent" |
| 71 | android:layout_alignParentEnd="true" |
| 72 | android:layout_alignParentRight="true" |
| 73 | android:layout_centerVertical="true" |
Tadashi G. Takaoka | 06d1cdd | 2014-05-13 15:53:01 +0900 | [diff] [blame^] | 74 | android:contentDescription="@string/spoken_description_mic" |
Tadashi G. Takaoka | c41d261 | 2014-05-08 10:57:48 +0900 | [diff] [blame] | 75 | style="?attr/suggestionWordStyle" /> |
Tadashi G. Takaoka | 86e815a | 2011-06-14 16:28:57 +0900 | [diff] [blame] | 76 | </merge> |