|
|
@@ -2,7 +2,7 @@
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
android:id="@+id/rl_template"
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="@dimen/height_cover"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
android:background="@color/gray_divider_light"
|
|
|
android:foreground="@drawable/selectable_item_background"
|
|
|
android:padding="@dimen/width_stroke"
|
|
|
@@ -10,24 +10,31 @@
|
|
|
android:layout_marginEnd="@dimen/margin_s"
|
|
|
android:layout_marginTop="@dimen/margin_sss">
|
|
|
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/iv_template"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="@dimen/height_cover"
|
|
|
+ android:src="@mipmap/logo_gray"
|
|
|
+ android:scaleType="centerCrop" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_template"
|
|
|
+ android:layout_below="@+id/iv_template"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="bottom"
|
|
|
+ android:background="@color/black_light_transparent"
|
|
|
+ android:gravity="center"
|
|
|
+ android:paddingTop="@dimen/margin_ss"
|
|
|
+ android:paddingBottom="@dimen/margin_ss"
|
|
|
+ android:textColor="@color/white_slight"
|
|
|
+ android:textSize="@dimen/text_s"
|
|
|
+ android:layout_alignParentBottom="true"/>
|
|
|
+ </RelativeLayout>
|
|
|
|
|
|
|
|
|
- <ImageView
|
|
|
- android:id="@+id/iv_template"
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="match_parent"
|
|
|
- android:src="@mipmap/logo_gray"
|
|
|
- android:scaleType="centerCrop" />
|
|
|
|
|
|
- <TextView
|
|
|
- android:id="@+id/tv_template"
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_gravity="bottom"
|
|
|
- android:background="@color/black_light_transparent"
|
|
|
- android:gravity="center"
|
|
|
- android:paddingTop="@dimen/margin_ss"
|
|
|
- android:paddingBottom="@dimen/margin_ss"
|
|
|
- android:textColor="@color/white_slight"
|
|
|
- android:textSize="@dimen/text_s" />
|
|
|
</FrameLayout>
|