<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<ListView
android:id="@+id/classify_mainlist"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#fff"
android:cacheColorHint="#00000000"
android:divider="@color/ui_line"
android:dividerHeight="0.5dp"
android:fastScrollEnabled="true"
android:listSelector="#00000000"
android:scrollbars="none" />
<View
android:layout_width="0.5dp"
android:layout_height="match_parent"
android:background="@color/ui_line"/>
<ListView
android:id="@+id/classify_morelist"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#fafafa"
android:cacheColorHint="#00000000"
android:divider="@color/ui_line"
android:dividerHeight="0.5dp"
android:fastScrollEnabled="true"
android:listSelector="#00000000"
android:scrollbars="none" />
</LinearLayout>
|