blob: 78d2750ebd2897f85dee0820d1b51363b5c23e64 [file] [log] [blame]
Tadashi G. Takaokae49bd1c2010-12-06 21:26:38 +09001<?xml version="1.0" encoding="utf-8"?>
2<!--
3/*
4**
5** Copyright 2010, 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<LinearLayout
22 xmlns:android="http://schemas.android.com/apk/res/android"
Tadashi G. Takaokaa8c163f2011-04-08 17:58:35 +090023 android:layout_width="wrap_content"
24 android:layout_height="match_parent"
Tadashi G. Takaokae49bd1c2010-12-06 21:26:38 +090025 android:orientation="horizontal"
Tadashi G. Takaoka4700a6f2010-12-13 15:21:15 +090026 android:paddingRight="@dimen/candidate_padding"
Tadashi G. Takaokae49bd1c2010-12-06 21:26:38 +090027>
28 <ImageView
29 android:id="@+id/candidate_divider"
30 android:layout_width="wrap_content"
Tadashi G. Takaokaa8c163f2011-04-08 17:58:35 +090031 android:layout_height="match_parent"
32 android:src="@drawable/keyboard_suggest_strip_divider"
Tadashi G. Takaokae49bd1c2010-12-06 21:26:38 +090033 android:visibility="gone"
34 android:focusable="false"
35 android:clickable="false"
Tadashi G. Takaokae49bd1c2010-12-06 21:26:38 +090036 android:gravity="center_vertical|center_horizontal" />
37 <Button
38 android:id="@+id/candidate_word"
39 android:layout_width="wrap_content"
Tadashi G. Takaokaa8c163f2011-04-08 17:58:35 +090040 android:layout_height="match_parent"
Tadashi G. Takaoka4700a6f2010-12-13 15:21:15 +090041 android:minWidth="@dimen/candidate_min_width"
Tadashi G. Takaokae49bd1c2010-12-06 21:26:38 +090042 android:textSize="@dimen/candidate_text_size"
43 android:textColor="@color/candidate_normal"
44 android:background="@drawable/btn_candidate"
45 android:focusable="true"
46 android:clickable="true"
47 android:gravity="center_vertical|center_horizontal"
Tadashi G. Takaoka4700a6f2010-12-13 15:21:15 +090048 android:paddingLeft="@dimen/candidate_padding" />
Tadashi G. Takaoka7e181fe2010-12-10 20:50:30 +090049 <TextView
50 android:id="@+id/candidate_debug_info"
51 android:layout_width="wrap_content"
Tadashi G. Takaokaa8c163f2011-04-08 17:58:35 +090052 android:layout_height="match_parent"
Tadashi G. Takaoka7e181fe2010-12-10 20:50:30 +090053 android:visibility="gone"
54 android:textSize="10dip"
55 android:textColor="#ff808080"
56 android:focusable="false"
57 android:clickable="false"
Tadashi G. Takaokaa8c163f2011-04-08 17:58:35 +090058 android:gravity="bottom" />
Tadashi G. Takaokae49bd1c2010-12-06 21:26:38 +090059</LinearLayout>