1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 Copyright (C) 2008-2012 OMRON SOFTWARE Co., Ltd. 4 5 Licensed under the Apache License, Version 2.0 (the "License"); 6 you may not use this file except in compliance with the License. 7 You may obtain a copy of the License at 8 9 http://www.apache.org/licenses/LICENSE-2.0 10 11 Unless required by applicable law or agreed to in writing, software 12 distributed under the License is distributed on an "AS IS" BASIS, 13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 See the License for the specific language governing permissions and 15 limitations under the License. 16--> 17<!-- candidate list --> 18<FrameLayout 19 xmlns:android="http://schemas.android.com/apk/res/android" 20 android:orientation="vertical" 21 android:layout_width="match_parent" 22 android:layout_height="wrap_content" 23 > 24 <LinearLayout 25 android:orientation="vertical" 26 android:layout_width="match_parent" 27 android:layout_height="wrap_content" 28 > 29 30 <LinearLayout 31 android:id="@+id/candview_tab" 32 android:orientation="vertical" 33 android:layout_width="match_parent" 34 android:layout_height="wrap_content" 35 > 36 <LinearLayout 37 android:orientation="horizontal" 38 android:layout_width="match_parent" 39 android:layout_height="wrap_content" 40 android:background="@color/candidate_tab_back" 41 > 42 <TextView 43 android:id="@+id/candview_symbol" 44 android:layout_width="match_parent" 45 android:layout_height="wrap_content" 46 android:layout_weight="1" 47 android:background="@drawable/cand_tab" 48 android:singleLine="true" 49 android:gravity="center" 50 android:text="@string/cand_tab_symbol_txt" 51 android:textColor="@color/tab_textcolor_no_select" 52 android:textSize="@dimen/tab_text_size" 53 android:soundEffectsEnabled="false" 54 /> 55 <TextView 56 android:id="@+id/candview_emoticon" 57 android:layout_width="match_parent" 58 android:layout_height="wrap_content" 59 android:layout_weight="1" 60 android:background="@drawable/cand_tab" 61 android:singleLine="true" 62 android:gravity="center" 63 android:text="@string/cand_tab_emoticon_txt" 64 android:textColor="@color/tab_textcolor_no_select" 65 android:textSize="@dimen/tab_text_size" 66 android:soundEffectsEnabled="false" 67 /> 68 </LinearLayout> 69 </LinearLayout> 70 71 <ScrollView 72 android:id="@+id/candview_scroll" 73 android:layout_width="match_parent" 74 android:layout_height="wrap_content" 75 android:fadingEdgeLength="0dip" 76 android:scrollbars="vertical" 77 android:background="@color/candidate_back" 78 > 79 <LinearLayout 80 android:id="@+id/candview_base" 81 android:orientation="vertical" 82 android:layout_width="match_parent" 83 android:layout_height="wrap_content" 84 > 85 <!--View 86 android:layout_height="wrap_content" 87 android:layout_width="match_parent" 88 android:background="@drawable/candidate_top" 89 /--> 90 <LinearLayout 91 android:id="@+id/candidates_1st_view" 92 android:orientation="vertical" 93 android:layout_width="match_parent" 94 android:layout_height="wrap_content" 95 /> 96 <AbsoluteLayout 97 android:id="@+id/candidates_2nd_view" 98 android:layout_width="match_parent" 99 android:layout_height="wrap_content" 100 /> 101 </LinearLayout> 102 </ScrollView> 103 </LinearLayout> 104 <LinearLayout 105 android:id="@+id/read_more" 106 android:layout_width="match_parent" 107 android:layout_height="wrap_content" 108 android:fadingEdgeLength="0dip" 109 android:orientation="vertical" 110 android:gravity="right" 111 > 112 <ImageView 113 android:id="@+id/read_more_button" 114 android:layout_height="wrap_content" 115 android:layout_width="wrap_content" 116 android:paddingRight="2dip" 117 android:soundEffectsEnabled="false" 118 /> 119 </LinearLayout> 120</FrameLayout> 121