123456789101112131415161718192021222324252627282930313233343536373839 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/super_white">
- <cn.ewan.supersdk.ui.view.TitleBar
- android:id="@+id/super_title_bar"
- android:layout_width="match_parent"
- android:layout_height="@dimen/super_dimen_48.00dp"
- android:layout_alignParentTop="true"/>
- <ListView
- android:id="@+id/super_list_view"
- android:layout_width="@dimen/super_dimen_88.00dp"
- android:layout_height="match_parent"
- android:layout_below="@id/super_title_bar"
- android:layout_alignParentLeft="true"
- android:cacheColorHint="@color/super_translucent"
- android:divider="@android:color/transparent"
- android:dividerHeight="@dimen/super_dimen_10.00dp"
- android:listSelector="@color/super_translucent"
- android:overScrollMode="never"
- android:paddingTop="@dimen/super_dimen_20.00dp"
- android:paddingBottom="@dimen/super_dimen_20.00dp"
- android:scrollbars="none"
- android:transcriptMode="disabled">
- </ListView>
- <FrameLayout
- android:id="@+id/super_container"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_below="@id/super_title_bar"
- android:layout_marginLeft="@dimen/super_dimen_12.00dp"
- android:layout_toRightOf="@id/super_list_view"
- android:background="@color/super_gray_efeff2">
- </FrameLayout>
- </RelativeLayout>
|