12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- android:paddingBottom="3dp"
- android:paddingLeft="6dp"
- android:paddingRight="6dp"
- android:paddingTop="3dp">
- <LinearLayout
- android:id="@+id/tysdkn_ll_no_selection_discount"
- android:layout_width="match_parent"
- android:layout_height="30dp"
- android:background="@drawable/tysdkn_bg_yuanjiao_1"
- android:orientation="horizontal">
- <LinearLayout
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1">
- <TextView
- android:id="@+id/tv_discount_desc"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:layout_marginLeft="8dp"
- android:text="不使用优惠券"
- android:textColor="#999999"
- android:textSize="9sp" />
- </LinearLayout>
- <CheckBox
- android:id="@+id/tysdkn_cb_no_selection_discount"
- android:layout_width="15dp"
- android:layout_height="15dp"
- android:layout_gravity="center_vertical"
- android:layout_marginRight="8dp"
- android:background="@drawable/tysdkn_discount_selector"
- android:button="@null"
- android:clickable="false"
- android:gravity="center"
- android:textColor="#ffffff"
- tools:checked="true" />
- </LinearLayout>
- </LinearLayout>
|