blob: 0b614993b7127fe373d705ba1be446e23aff694e [file] [log] [blame]
Tadashi G. Takaoka86e815a2011-06-14 16:28:57 +09001<?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 Chalardb11339b2014-01-08 16:52:04 +090022 xmlns:android="http://schemas.android.com/apk/res/android">
Tadashi G. Takaokac4123092011-09-05 16:15:28 +090023 <LinearLayout
24 android:id="@+id/suggestions_strip"
25 android:orientation="horizontal"
Tadashi G. Takaoka717a8f52011-06-27 16:57:18 +090026 android:layout_width="match_parent"
Tadashi G. Takaokac4123092011-09-05 16:15:28 +090027 android:layout_height="match_parent" />
Tadashi G. Takaoka148dedb2014-01-27 14:50:02 +090028 <LinearLayout
29 android:id="@+id/add_to_dictionary_strip"
30 android:orientation="horizontal"
31 android:layout_width="match_parent"
32 android:layout_height="match_parent"
33 android:visibility="invisible">
Tadashi G. Takaokac2ea3f72014-01-28 19:22:27 +090034 <TextView
35 android:id="@+id/word_to_save"
36 android:layout_width="match_parent"
37 android:layout_height="match_parent"
38 style="?attr/suggestionWordStyle" />
Tadashi G. Takaoka148dedb2014-01-27 14:50:02 +090039 <include
40 layout="@layout/suggestion_divider" />
Tadashi G. Takaokac2ea3f72014-01-28 19:22:27 +090041 <TextView
42 android:id="@+id/hint_add_to_dictionary"
43 android:layout_width="match_parent"
44 android:layout_height="match_parent"
Tadashi G. Takaoka9b1a6682014-01-30 16:52:29 +090045 android:textAlignment="viewStart"
Tadashi G. Takaokac2ea3f72014-01-28 19:22:27 +090046 style="?attr/suggestionWordStyle" />
Tadashi G. Takaoka148dedb2014-01-27 14:50:02 +090047 </LinearLayout>
Tadashi G. Takaoka8a296e42014-01-28 16:19:29 +090048 <LinearLayout
49 android:id="@+id/important_notice_strip"
50 android:orientation="horizontal"
51 android:layout_width="match_parent"
52 android:layout_height="match_parent">
53 <TextView
54 android:id="@+id/important_notice_title"
Tadashi G. Takaoka9706f9a2014-02-03 15:08:07 +090055 android:layout_width="match_parent"
Tadashi G. Takaoka8a296e42014-01-28 16:19:29 +090056 android:layout_height="match_parent"
Tadashi G. Takaoka28c02b42014-02-17 11:28:48 +090057 android:padding="6sp"
Tadashi G. Takaoka36d606f2014-02-14 19:10:47 +090058 android:textSize="16sp"
Tadashi G. Takaoka8a296e42014-01-28 16:19:29 +090059 style="?attr/suggestionWordStyle" />
60 </LinearLayout>
Tadashi G. Takaoka86e815a2011-06-14 16:28:57 +090061</merge>