| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?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:orientation="vertical">
- <include layout="@layout/view_divider" />
- <LinearLayout
- android:id="@+id/ll_coupon"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@color/white"
- android:foreground="?attr/selectableItemBackground"
- android:orientation="horizontal"
- android:gravity="center_vertical"
- android:paddingTop="@dimen/activity_horizontal_margin_ss"
- android:paddingBottom="@dimen/activity_horizontal_margin_ss"
- android:paddingStart="@dimen/activity_horizontal_margin"
- android:paddingEnd="@dimen/activity_horizontal_margin">
- <ImageView
- android:id="@+id/iv_coupon"
- android:layout_width="64dp"
- android:layout_height="64dp"
- android:src="@mipmap/logo_gray"
- android:scaleType="centerCrop"/>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:minHeight="@dimen/height_tool_item"
- android:orientation="vertical"
- android:layout_marginStart="@dimen/margin_s"
- android:gravity="center_vertical">
- <TextView
- android:id="@+id/tv_coupon_title"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="搞笑表情包"
- android:textSize="@dimen/text_normal_p"
- android:textColor="@color/black_theme"
- android:textStyle="bold"/>
- <Space
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:minHeight="@dimen/margin_s"/>
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/margin_sss"
- android:textColor="@color/gray_text_s"
- android:textSize="@dimen/text_normal_s"
- android:text="为表情包配字幕并下载制作的表情包"/>
- </LinearLayout>
- </LinearLayout>
- </LinearLayout>
|