nut_item_coupon.xml 1.8 KB
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:background="#f0faff"
    android:padding="10dp"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <LinearLayout
        android:layout_marginRight="10dp"
        android:layout_toLeftOf="@+id/nutTextMoney"
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <TextView
            android:id="@+id/nutTextName"
            android:textSize="12sp"
            android:textColor="@color/nut_color_black_light"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />


        <TextView
            android:id="@+id/nutTextDesc"
            android:layout_marginLeft="3dp"
            android:textSize="10sp"
            android:textColor="#ffbbbbbb"
            android:text="(满30可用)"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />

    </LinearLayout>

    <CheckBox
        android:id="@+id/nutCheckCoupon"
        android:checked="false"
        android:background="@null"
        android:button="@drawable/nut_selector_pay_check"
        android:layout_centerVertical="true"
        android:layout_alignParentRight="true"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

    <TextView
        android:layout_marginRight="10dp"
        android:layout_toLeftOf="@id/nutCheckCoupon"
        android:layout_centerVertical="true"
        android:id="@+id/nutTextMoney"
        android:textSize="12sp"
        android:textColor="@color/nut_color_black_light"
        android:text="-¥10"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

</RelativeLayout>