blob: 0f542c0a256a72a0575cccce158351d17320a8c7 [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
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. Takaoka86e815a2011-06-14 16:28:57 +090025 <LinearLayout
Tadashi G. Takaoka717a8f52011-06-27 16:57:18 +090026 android:id="@+id/candidates_strip"
Tadashi G. Takaokab4731982011-06-26 03:00:51 +090027 android:orientation="horizontal"
Tadashi G. Takaoka74b68972011-06-30 10:09:21 +090028 android:layout_weight="1.0"
29 android:layout_width="0dp"
Tadashi G. Takaoka7fb04fe2011-06-26 02:07:07 +090030 android:layout_height="match_parent"
Tadashi G. Takaoka86e815a2011-06-14 16:28:57 +090031 >
Tadashi G. Takaoka74b68972011-06-30 10:09:21 +090032 </LinearLayout>
33 <LinearLayout
34 android:id="@+id/candidates_pane_control"
35 android:orientation="horizontal"
36 android:layout_width="wrap_content"
37 android:layout_height="match_parent"
38 >
39 <TextView
40 android:id="@+id/expand_candidates_pane"
41 android:text="@string/label_expand_candidates_pane"
Tadashi G. Takaoka2442e772011-06-24 14:19:59 +090042 android:gravity="center"
Tadashi G. Takaoka74b68972011-06-30 10:09:21 +090043 android:layout_width="wrap_content"
Tadashi G. Takaoka717a8f52011-06-27 16:57:18 +090044 android:layout_height="match_parent"
Tadashi G. Takaoka74b68972011-06-30 10:09:21 +090045 android:minWidth="30dp"
46 android:textSize="@dimen/candidate_text_size"
47 android:padding="0dp"
48 android:visibility="visible"
49 style="?attr/suggestionBackgroundStyle" />
50 <TextView
51 android:id="@+id/close_candidates_pane"
52 android:text="@string/label_close_candidates_pane"
Tadashi G. Takaoka717a8f52011-06-27 16:57:18 +090053 android:gravity="center"
Tadashi G. Takaoka74b68972011-06-30 10:09:21 +090054 android:layout_width="wrap_content"
Tadashi G. Takaoka717a8f52011-06-27 16:57:18 +090055 android:layout_height="match_parent"
Tadashi G. Takaoka74b68972011-06-30 10:09:21 +090056 android:minWidth="30dp"
57 android:textSize="@dimen/candidate_text_size"
58 android:padding="0dp"
59 android:visibility="gone"
60 style="?attr/suggestionBackgroundStyle" />
Tadashi G. Takaoka717a8f52011-06-27 16:57:18 +090061 </LinearLayout>
62 <LinearLayout
63 android:id="@+id/touch_to_save"
64 android:orientation="horizontal"
65 android:layout_width="match_parent"
66 android:layout_height="match_parent"
67 android:visibility="gone"
68 >
69 <Button
70 android:id="@+id/word_to_save"
71 android:layout_weight="1.0"
72 android:layout_width="0dp"
73 android:layout_height="match_parent"
Tadashi G. Takaokab4731982011-06-26 03:00:51 +090074 android:layout_gravity="center_vertical"
Tadashi G. Takaoka717a8f52011-06-27 16:57:18 +090075 android:textSize="@dimen/candidate_text_size"
76 android:singleLine="true"
77 android:ellipsize="middle"
78 style="?attr/suggestionBackgroundStyle" />
79 <include
80 layout="@layout/candidate_divider" />
81 <TextView
82 android:layout_weight="2.0"
83 android:layout_width="0dp"
84 android:layout_height="match_parent"
85 android:gravity="left|center_vertical"
86 android:text="@string/hint_add_to_dictionary"
87 android:textSize="@dimen/candidate_text_size"
88 android:background="@null" />
Tadashi G. Takaoka86e815a2011-06-14 16:28:57 +090089 </LinearLayout>
90</merge>