layout_coupon_item.xml 3.83 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="wrap_content"
    android:gravity="center">

    <FrameLayout
        android:id="@+id/layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center">

        <RelativeLayout
            android:id="@+id/rl_bg"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center">

            <RelativeLayout
                android:layout_width="323dp"
                android:layout_height="97dp"
                android:layout_centerHorizontal="true"
                android:layout_marginTop="9dp">

                <ImageView
                    android:id="@+id/ima_coupon_bg"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_centerInParent="true"
                    android:background="@drawable/coupon_bg" />

                <TextView
                    android:id="@+id/tv_coupon_price"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginTop="55dp"
                    android:layout_alignParentRight="true"
                    android:layout_marginRight="211dp"
                    android:text="15元"
                    android:textColor="@color/white" />

                <TextView
                    android:id="@+id/tv_coupon_title"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginLeft="131dp"
                    android:layout_marginTop="14dp"
                    android:ellipsize="end"
                    android:singleLine="true"
                    android:text="购票中使用"
                    android:textColor="@color/color_333"
                    android:textSize="17sp" />

                <TextView
                    android:id="@+id/tv_coupon_xz"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_below="@id/tv_coupon_title"
                    android:layout_marginLeft="131dp"
                    android:layout_marginTop="9dp"
                    android:text="一次限使用一张优惠券"
                    android:textColor="@color/color_999"
                    android:textSize="11sp" />

                <TextView
                    android:id="@+id/tv_coupon_date"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_below="@id/tv_coupon_xz"
                    android:layout_marginLeft="131dp"
                    android:layout_marginTop="16dp"
                    android:text="有效期:2008-12-12"
                    android:textColor="@color/color_c8c8c8"
                    android:textSize="10sp" />

                <ImageView
                    android:id="@+id/ima_coupon_sel"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_alignParentRight="true"
                    android:layout_marginRight="6dp"
                    android:layout_marginTop="6dp"
                    android:background="@mipmap/coupon_chose"
                    android:visibility="gone" />
            </RelativeLayout>
        </RelativeLayout>

        <ImageView
            android:id="@+id/ima_coupon_white"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />
    </FrameLayout>
</LinearLayout>