ht_dialog_gift_center.xml 1.9 KB
<?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">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        style="@style/ht_title_style">

        <TextView
            android:layout_width="match_parent"
            android:layout_height="40dp"
            android:text="礼包中心"
            style="@style/ht_title_text_style" />

        <ImageView
            android:id="@+id/ht_close_img"
            style="@style/ht_close_style"
            android:layout_width="18dp"
            android:layout_height="18dp" />
    </RelativeLayout>

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

        <ProgressBar
            android:id="@+id/ht_gift_center_pro"
            android:layout_width="wrap_content"
            android:layout_gravity="center"
            android:indeterminateDrawable="@drawable/ht_loading_progressbar"
            android:layout_height="wrap_content" />

        <ListView
            android:id="@+id/ht_gift_center_lv"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:cacheColorHint="#00000000"
            android:divider="@color/ht_driver"
            android:dividerHeight="1dp"
            android:fadingEdge="none"
            android:fadingEdgeLength="0dp"
            android:layout_marginBottom="15dp"
            android:listSelector="#00000000" />

        <ImageView
            android:id="@+id/ht_gift_center_nothing"
            android:layout_width="80dp"
            android:layout_height="80dp"
            android:visibility="invisible"
            android:background="@drawable/ht_icon_exit"
            android:layout_gravity="center" />
    </FrameLayout>
</LinearLayout>