blob: 2d908863cbb1d3f4e77d9901a0bf640dbb12ecd7 [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. Takaoka31182772011-07-01 14:21:25 +090030 android:layout_height="match_parent" />
Tadashi G. Takaoka74b68972011-06-30 10:09:21 +090031 <LinearLayout
32 android:id="@+id/candidates_pane_control"
33 android:orientation="horizontal"
34 android:layout_width="wrap_content"
35 android:layout_height="match_parent"
36 >
37 <TextView
38 android:id="@+id/expand_candidates_pane"
39 android:text="@string/label_expand_candidates_pane"
Tadashi G. Takaoka2442e772011-06-24 14:19:59 +090040 android:gravity="center"
Tadashi G. Takaoka74b68972011-06-30 10:09:21 +090041 android:layout_width="wrap_content"
Tadashi G. Takaoka717a8f52011-06-27 16:57:18 +090042 android:layout_height="match_parent"
Tadashi G. Takaoka74b68972011-06-30 10:09:21 +090043 android:textSize="@dimen/candidate_text_size"
Tadashi G. Takaoka31182772011-07-01 14:21:25 +090044 android:paddingRight="8dp"
45 android:paddingLeft="8dp"
Tadashi G. Takaoka74b68972011-06-30 10:09:21 +090046 android:visibility="visible"
Tadashi G. Takaoka31182772011-07-01 14:21:25 +090047 android:background="@drawable/btn_keyboard_key_ics" />
Tadashi G. Takaoka74b68972011-06-30 10:09:21 +090048 <TextView
49 android:id="@+id/close_candidates_pane"
50 android:text="@string/label_close_candidates_pane"
Tadashi G. Takaoka717a8f52011-06-27 16:57:18 +090051 android:gravity="center"
Tadashi G. Takaoka74b68972011-06-30 10:09:21 +090052 android:layout_width="wrap_content"
Tadashi G. Takaoka717a8f52011-06-27 16:57:18 +090053 android:layout_height="match_parent"
Tadashi G. Takaoka74b68972011-06-30 10:09:21 +090054 android:textSize="@dimen/candidate_text_size"
Tadashi G. Takaoka31182772011-07-01 14:21:25 +090055 android:paddingRight="8dp"
56 android:paddingLeft="8dp"
Tadashi G. Takaoka74b68972011-06-30 10:09:21 +090057 android:visibility="gone"
Tadashi G. Takaoka31182772011-07-01 14:21:25 +090058 android:background="@drawable/btn_keyboard_key_ics" />
Tadashi G. Takaoka717a8f52011-06-27 16:57:18 +090059 </LinearLayout>
60 <LinearLayout
61 android:id="@+id/touch_to_save"
62 android:orientation="horizontal"
63 android:layout_width="match_parent"
64 android:layout_height="match_parent"
65 android:visibility="gone"
66 >
67 <Button
68 android:id="@+id/word_to_save"
69 android:layout_weight="1.0"
70 android:layout_width="0dp"
71 android:layout_height="match_parent"
Tadashi G. Takaokab4731982011-06-26 03:00:51 +090072 android:layout_gravity="center_vertical"
Tadashi G. Takaoka717a8f52011-06-27 16:57:18 +090073 android:textSize="@dimen/candidate_text_size"
74 android:singleLine="true"
75 android:ellipsize="middle"
76 style="?attr/suggestionBackgroundStyle" />
77 <include
78 layout="@layout/candidate_divider" />
79 <TextView
80 android:layout_weight="2.0"
81 android:layout_width="0dp"
82 android:layout_height="match_parent"
83 android:gravity="left|center_vertical"
84 android:text="@string/hint_add_to_dictionary"
85 android:textSize="@dimen/candidate_text_size"
86 android:background="@null" />
Tadashi G. Takaoka86e815a2011-06-14 16:28:57 +090087 </LinearLayout>
88</merge>