blob: 37179d2afc55f2d7c29c4175106b56ee811d04a2 [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"
23 android:layout_width="match_parent"
24 android:layout_height="@dimen/candidate_strip_height"
25 android:orientation="horizontal"
26>
27 <ImageView
28 android:id="@+id/candidate_divider"
29 android:layout_width="wrap_content"
30 android:layout_height="@dimen/candidate_strip_height"
31 android:visibility="gone"
32 android:focusable="false"
33 android:clickable="false"
34 android:src="@drawable/keyboard_suggest_strip_divider"
35 android:gravity="center_vertical|center_horizontal" />
36 <Button
37 android:id="@+id/candidate_word"
38 android:layout_width="wrap_content"
39 android:layout_height="@dimen/candidate_strip_height"
40 android:minWidth="@dimen/candidate_min_touchable_width"
41 android:textSize="@dimen/candidate_text_size"
42 android:textColor="@color/candidate_normal"
43 android:background="@drawable/btn_candidate"
44 android:focusable="true"
45 android:clickable="true"
46 android:gravity="center_vertical|center_horizontal"
47 android:paddingLeft="12dip"
48 android:paddingRight="12dip" />
49</LinearLayout>