24 lines
796 B
XML
24 lines
796 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="16dp">
|
|
|
|
<TextView
|
|
android:id="@+id/template_name"
|
|
android:textSize="16dp"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_marginLeft="16dp"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="模板名"/>
|
|
|
|
<TextView
|
|
android:id="@+id/template_num"
|
|
android:textSize="14dp"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="项目数"/>
|
|
|
|
</RelativeLayout> |