| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <?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_common"/>
- <FrameLayout
- android:id="@+id/rl_template"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/margin_s"
- android:background="@color/white"
- android:foreground="@drawable/selectable_item_background">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
- <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:padding="@dimen/margin_s"
- android:textColor="@color/black_theme" />
- </LinearLayout>
- </FrameLayout>
- <include layout="@layout/view_divider_common"/>
- </LinearLayout>
|