1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- 3 Copyright (C) 2008,2009 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 <ScrollView 25 android:id="@+id/candview_scroll" 26 android:layout_width="match_parent" 27 android:layout_height="wrap_content" 28 android:fadingEdgeLength="0dip" 29 android:scrollbars="vertical" 30 > 31 <LinearLayout 32 android:id="@+id/candview_base" 33 android:orientation="vertical" 34 android:layout_width="match_parent" 35 android:layout_height="wrap_content" 36 android:background="@color/candidate_back" 37 > 38 <!--View 39 android:layout_height="wrap_content" 40 android:layout_width="match_parent" 41 android:background="@drawable/candidate_top" 42 /--> 43 <LinearLayout 44 android:id="@+id/candidates_1st_view" 45 android:orientation="vertical" 46 android:layout_width="match_parent" 47 android:layout_height="wrap_content" 48 android:background="@color/candidate_back" 49 /> 50 <AbsoluteLayout 51 android:id="@+id/candidates_2nd_view" 52 android:layout_width="match_parent" 53 android:layout_height="wrap_content" 54 android:background="@color/candidate_back" 55 /> 56 </LinearLayout> 57 </ScrollView> 58 59 <LinearLayout 60 android:id="@+id/read_more" 61 android:layout_width="match_parent" 62 android:layout_height="wrap_content" 63 android:fadingEdgeLength="0dip" 64 android:orientation="vertical" 65 android:gravity="right" 66 > 67 <ImageView 68 android:id="@+id/read_more_text" 69 android:layout_height="wrap_content" 70 android:layout_width="wrap_content" 71 /> 72 </LinearLayout> 73 </FrameLayout> 74