platform_layout_root.xml 834 Bytes
Newer Older
konghaorui committed
1 2 3 4 5 6 7 8 9
<?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="vertical">

    <View
        android:id="@+id/view_status_place_holder"
        android:layout_width="match_parent"
konghaorui committed
10
        android:background="@color/platform_white"
konghaorui committed
11 12
        android:layout_height="0dp"/>

13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
    <FrameLayout
        android:id="@+id/ll_root"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1">

    </FrameLayout>

    <View
        android:id="@+id/ll_bottom_v"
        android:layout_width="match_parent"
        android:layout_height="10dp"
        android:visibility="gone">
    </View>

konghaorui committed
28
</LinearLayout>