| <?xml version="1.0" encoding="utf-8"?> |
| <!-- |
| Copyright (C) 2008,2009 OMRON SOFTWARE Co., Ltd. |
| |
| Licensed under the Apache License, Version 2.0 (the "License"); |
| you may not use this file except in compliance with the License. |
| You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| --> |
| <!-- candidate list --> |
| <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| android:orientation="vertical" |
| android:layout_width="fill_parent" |
| android:layout_height="wrap_content" |
| > |
| |
| <ScrollView android:id="@+id/candview_scroll" |
| android:layout_width="fill_parent" |
| android:layout_height="1px" |
| android:fadingEdgeLength="0px" |
| android:scrollbars="vertical" |
| > |
| <EditText android:id="@+id/text_candidates_view" |
| android:layout_width="fill_parent" |
| android:layout_height="wrap_content" |
| android:background="@color/candidate_background" |
| android:textColor="@color/candidate_text" |
| android:cursorVisible="true" |
| android:textColorHighlight="@color/candidate_highlight" |
| android:paddingLeft="10px" |
| android:paddingRight="10px" |
| android:paddingTop="10px" |
| android:shadowColor="@color/candidate_shadow" |
| android:shadowRadius="0.1" |
| /> |
| </ScrollView> |
| <LinearLayout android:id="@+id/read_more" |
| android:layout_width="fill_parent" |
| android:layout_height="fill_parent" |
| android:fadingEdgeLength="0px" |
| android:gravity="bottom|right" |
| > |
| <TextView android:id="@+id/read_more_text" |
| android:layout_width="fill_parent" |
| android:layout_height="fill_parent" |
| android:gravity="bottom|right" |
| android:textColor="@color/candidate_text" |
| /> |
| </LinearLayout> |
| </FrameLayout> |