Home | History | Annotate | Download | only in layout
      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 <LinearLayout
     19    xmlns:android="http://schemas.android.com/apk/res/android"
     20    android:orientation="horizontal"
     21    android:layout_width="match_parent"
     22    android:layout_height="@dimen/candidate_layout_height"
     23    >
     24 
     25   <LinearLayout
     26      android:id="@+id/left_more"
     27      android:layout_width="wrap_content"
     28      android:layout_height="@dimen/candidate_layout_height"
     29      android:orientation="horizontal"
     30      android:background="@drawable/cand_back_1line"
     31      >
     32     <ImageView
     33        android:id="@+id/left_more_imageview"
     34        android:src="@drawable/cand_left"
     35        android:layout_width="@dimen/candidate_layout_width"
     36        android:layout_height="match_parent"
     37        android:clickable="true"
     38        android:background="@color/candidate_back_1line"
     39        android:soundEffectsEnabled="false"
     40        />
     41   </LinearLayout>
     42 
     43   <HorizontalScrollView
     44      android:id="@+id/candview_scroll_1line"
     45      android:layout_width="wrap_content"
     46      android:layout_height="@dimen/candidate_layout_height"
     47      android:scrollbars="none"
     48      android:layout_weight="1"
     49      android:fadingEdge="horizontal"
     50      android:background="@color/candidate_back_1line"
     51      >
     52     <LinearLayout
     53        android:id="@+id/candidates_view_1line"
     54        android:layout_width="match_parent"
     55        android:layout_height="@dimen/candidate_layout_height"
     56        android:background="@color/candidate_back_1line"
     57        />
     58   </HorizontalScrollView>
     59 
     60   <LinearLayout
     61      android:id="@+id/right_more"
     62      android:layout_width="wrap_content"
     63      android:layout_height="@dimen/candidate_layout_height"
     64      android:orientation="horizontal"
     65      android:background="@drawable/cand_back_1line"
     66      >
     67     <ImageView
     68        android:id="@+id/right_more_imageview"
     69        android:src="@drawable/cand_right"
     70        android:layout_width="@dimen/candidate_layout_width"
     71        android:layout_height="match_parent"
     72        android:clickable="true"
     73        android:background="@color/candidate_back_1line"
     74        android:soundEffectsEnabled="false"
     75        />
     76   </LinearLayout>
     77 </LinearLayout>
     78