consultant_ui_region_popup_window.xml 909 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10
<?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">

    <android.support.v7.widget.RecyclerView
        android:id="@+id/rvRegion"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
konghaorui committed
11
        android:background="@color/platform_white"
12 13 14 15 16 17 18 19
        android:layout_weight="1"
        android:paddingTop="10dp"
        android:overScrollMode="never"/>

    <android.support.v7.widget.RecyclerView
        android:id="@+id/rvSub"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
konghaorui committed
20
        android:background="@color/platform_color_F7F7F7"
21 22 23 24
        android:layout_weight="2"
        android:paddingTop="10dp"
        android:overScrollMode="never"/>
</LinearLayout>