fragment_recommend.xml 816 Bytes
<?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:layout_width="match_parent"
        android:layout_height="1px"
        android:background="@color/gray_line_color" />

    <include layout="@layout/divider_head_line" />

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <ListView
            android:id="@android:id/list"
            style="@style/list_view"
            android:fadingEdge="none"
            android:fadingEdgeLength="0dp" />

        <include layout="@layout/view_empty_layout" />

    </RelativeLayout>
</LinearLayout>