24 lines
820 B
XML
24 lines
820 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:padding="8dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/template_icon_view"
|
|
android:layout_width="50dp"
|
|
android:layout_height="50dp"
|
|
android:layout_alignParentLeft="true"
|
|
android:src="@mipmap/ui_template" />
|
|
|
|
<TextView
|
|
android:id="@+id/name_view"
|
|
android:layout_marginLeft="16dp"
|
|
android:layout_centerVertical="true"
|
|
android:layout_toRightOf="@id/template_icon_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="14dp"
|
|
android:text="模板名称" />
|
|
|
|
</RelativeLayout> |