Tadashi G. Takaoka | e49bd1c | 2010-12-06 21:26:38 +0900 | [diff] [blame] | 1 | <?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. Takaoka | a8c163f | 2011-04-08 17:58:35 +0900 | [diff] [blame^] | 23 | android:layout_width="wrap_content" |
| 24 | android:layout_height="match_parent" |
Tadashi G. Takaoka | e49bd1c | 2010-12-06 21:26:38 +0900 | [diff] [blame] | 25 | android:orientation="horizontal" |
Tadashi G. Takaoka | 4700a6f | 2010-12-13 15:21:15 +0900 | [diff] [blame] | 26 | android:paddingRight="@dimen/candidate_padding" |
Tadashi G. Takaoka | e49bd1c | 2010-12-06 21:26:38 +0900 | [diff] [blame] | 27 | > |
| 28 | <ImageView |
| 29 | android:id="@+id/candidate_divider" |
| 30 | android:layout_width="wrap_content" |
Tadashi G. Takaoka | a8c163f | 2011-04-08 17:58:35 +0900 | [diff] [blame^] | 31 | android:layout_height="match_parent" |
| 32 | android:src="@drawable/keyboard_suggest_strip_divider" |
Tadashi G. Takaoka | e49bd1c | 2010-12-06 21:26:38 +0900 | [diff] [blame] | 33 | android:visibility="gone" |
| 34 | android:focusable="false" |
| 35 | android:clickable="false" |
Tadashi G. Takaoka | e49bd1c | 2010-12-06 21:26:38 +0900 | [diff] [blame] | 36 | android:gravity="center_vertical|center_horizontal" /> |
| 37 | <Button |
| 38 | android:id="@+id/candidate_word" |
| 39 | android:layout_width="wrap_content" |
Tadashi G. Takaoka | a8c163f | 2011-04-08 17:58:35 +0900 | [diff] [blame^] | 40 | android:layout_height="match_parent" |
Tadashi G. Takaoka | 4700a6f | 2010-12-13 15:21:15 +0900 | [diff] [blame] | 41 | android:minWidth="@dimen/candidate_min_width" |
Tadashi G. Takaoka | e49bd1c | 2010-12-06 21:26:38 +0900 | [diff] [blame] | 42 | 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. Takaoka | 4700a6f | 2010-12-13 15:21:15 +0900 | [diff] [blame] | 48 | android:paddingLeft="@dimen/candidate_padding" /> |
Tadashi G. Takaoka | 7e181fe | 2010-12-10 20:50:30 +0900 | [diff] [blame] | 49 | <TextView |
| 50 | android:id="@+id/candidate_debug_info" |
| 51 | android:layout_width="wrap_content" |
Tadashi G. Takaoka | a8c163f | 2011-04-08 17:58:35 +0900 | [diff] [blame^] | 52 | android:layout_height="match_parent" |
Tadashi G. Takaoka | 7e181fe | 2010-12-10 20:50:30 +0900 | [diff] [blame] | 53 | android:visibility="gone" |
| 54 | android:textSize="10dip" |
| 55 | android:textColor="#ff808080" |
| 56 | android:focusable="false" |
| 57 | android:clickable="false" |
Tadashi G. Takaoka | a8c163f | 2011-04-08 17:58:35 +0900 | [diff] [blame^] | 58 | android:gravity="bottom" /> |
Tadashi G. Takaoka | e49bd1c | 2010-12-06 21:26:38 +0900 | [diff] [blame] | 59 | </LinearLayout> |