blob: bcc1322b6f6db4ae7f029c34a095f91e769ae5f6 [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
Tadashi G. Takaoka717a8f52011-06-27 16:57:18 +090032 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. Takaokab4731982011-06-26 03:00:51 +090043 android:layout_gravity="center_vertical"
Tadashi G. Takaoka717a8f52011-06-27 16:57:18 +090044 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. Takaoka86e815a2011-06-14 16:28:57 +090058 </LinearLayout>
59</merge>