| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?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"
- android:layout_marginStart="@dimen/margin_ss"
- android:layout_marginEnd="@dimen/margin_ss">
- <View
- android:layout_width="match_parent"
- android:layout_height="@dimen/width_stroke"
- android:background="@color/green_divider"
- android:layout_marginTop="@dimen/margin_s" />
- <LinearLayout
- android:layout_width="match_parent"
- 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:layout_height="wrap_content"
- android:background="@color/white"
- android:foreground="@drawable/selectable_item_background">
- <ImageView
- android:id="@+id/iv_template"
- android:layout_width="match_parent"
- android:layout_height="@dimen/height_cover"
- android:src="@mipmap/logo_gray" />
- <TextView
- android:id="@+id/tv_template"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- 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" />
- </LinearLayout>
|