dialog_youhuijuan.xml 1.74 KB
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <View
        android:id="@+id/view_bg"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#77555555"></View>

    <LinearLayout
        android:id="@+id/ll_content"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:background="#fff"
        android:orientation="vertical">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="40dp"
            android:gravity="center_vertical"
            android:paddingLeft="16dp"
            android:text="优惠券"
            android:textColor="#606060"
            android:textSize="14sp" />

        <com.chudiangameplay.android.ui.view.MultiStateView
            android:id="@+id/multiplestatusView"
            android:layout_width="match_parent"
            android:layout_height="250dp"
            app:msv_emptyView="@layout/view_public_empty"
            app:msv_errorView="@layout/view_public_error_view"
            app:msv_loadingView="@layout/view_public_loading_view">

            <android.support.v7.widget.RecyclerView
                android:id="@+id/recyclerview"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:background="#F4F4F4"/>

        </com.chudiangameplay.android.ui.view.MultiStateView>
    </LinearLayout>

</RelativeLayout>