54 lines
1.9 KiB
XML
Executable File
54 lines
1.9 KiB
XML
Executable File
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@color/white"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal"
|
|
android:padding="10dp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_name"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:padding="5dp"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/text_18"
|
|
tools:text="流程名称:" />
|
|
|
|
|
|
<TextView
|
|
android:id="@+id/tv_create_user"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:padding="5dp"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/text_18"
|
|
tools:text="申请人:" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_current_task"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:padding="5dp"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/text_18"
|
|
tools:text="当前任务:" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_create_time"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:padding="5dp"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/text_18"
|
|
tools:text="创建时间" />
|
|
</LinearLayout>
|
|
</LinearLayout> |