|
@@ -4,54 +4,58 @@
|
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
|
android:orientation="vertical">
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
- <View
|
|
|
|
|
- android:layout_width="match_parent"
|
|
|
|
|
- android:layout_height="@dimen/width_stroke"
|
|
|
|
|
- android:background="@color/green_divider" />
|
|
|
|
|
|
|
+ <include layout="@layout/view_divider" />
|
|
|
<LinearLayout
|
|
<LinearLayout
|
|
|
|
|
+ android:id="@+id/ll_coupon"
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
|
- android:orientation="horizontal">
|
|
|
|
|
- <View
|
|
|
|
|
- android:layout_width="@dimen/width_stroke"
|
|
|
|
|
- android:layout_height="match_parent"
|
|
|
|
|
- android:background="@color/green_divider" />
|
|
|
|
|
- <FrameLayout
|
|
|
|
|
- android:id="@+id/rl_template"
|
|
|
|
|
- android:layout_width="0dp"
|
|
|
|
|
- android:layout_weight="1"
|
|
|
|
|
|
|
+ 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="56dp"
|
|
|
|
|
+ android:layout_height="56dp"
|
|
|
|
|
+ android:src="@mipmap/logo_gray"
|
|
|
|
|
+ android:scaleType="centerCrop"/>
|
|
|
|
|
+
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
|
- android:background="@color/white"
|
|
|
|
|
- android:foreground="@drawable/selectable_item_background">
|
|
|
|
|
- <ImageView
|
|
|
|
|
- android:id="@+id/iv_coupon"
|
|
|
|
|
- android:layout_width="match_parent"
|
|
|
|
|
- android:layout_height="@dimen/height_cover"
|
|
|
|
|
- android:src="@mipmap/logo_gray" />
|
|
|
|
|
|
|
+ android:minHeight="@dimen/height_tool_item"
|
|
|
|
|
+ android:orientation="vertical"
|
|
|
|
|
+ android:layout_marginStart="@dimen/margin_s"
|
|
|
|
|
+ android:gravity="center_vertical">
|
|
|
|
|
+
|
|
|
<TextView
|
|
<TextView
|
|
|
- android:id="@+id/tv_template"
|
|
|
|
|
|
|
+ android:id="@+id/tv_coupon_title"
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_margin="0.4dp"
|
|
|
|
|
- android:paddingStart="@dimen/margin_s"
|
|
|
|
|
- android:paddingEnd="@dimen/margin_s"
|
|
|
|
|
- android:paddingTop="@dimen/margin_ss"
|
|
|
|
|
- android:paddingBottom="@dimen/margin_ss"
|
|
|
|
|
- android:layout_gravity="bottom"
|
|
|
|
|
- android:textColor="@color/white"
|
|
|
|
|
- android:textSize="@dimen/text_normal"
|
|
|
|
|
- android:background="@color/black_light_transparent"/>
|
|
|
|
|
- </FrameLayout>
|
|
|
|
|
- <View
|
|
|
|
|
- android:layout_width="@dimen/width_stroke"
|
|
|
|
|
- android:layout_height="match_parent"
|
|
|
|
|
- android:background="@color/green_divider" />
|
|
|
|
|
- </LinearLayout>
|
|
|
|
|
- <View
|
|
|
|
|
- android:layout_width="match_parent"
|
|
|
|
|
- android:layout_height="@dimen/width_stroke"
|
|
|
|
|
- android:background="@color/green_divider" />
|
|
|
|
|
|
|
+ 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>
|
|
</LinearLayout>
|
|
|
|
|
|