2026-04-16 10:48:19 +08:00
|
|
|
<?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"
|
2026-04-16 10:52:00 +08:00
|
|
|
android:layout_marginBottom="30dp"
|
2026-04-16 16:01:03 +08:00
|
|
|
android:id="@+id/root"
|
2026-04-16 10:48:19 +08:00
|
|
|
android:paddingHorizontal="29dp"
|
|
|
|
|
android:paddingVertical="10dp"
|
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/title"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="驳回"
|
|
|
|
|
android:textColor="#2EB242"
|
|
|
|
|
android:textSize="10sp" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/content"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
|
android:text="驳回"
|
|
|
|
|
android:textColor="#ff40FF5E"
|
|
|
|
|
android:textSize="14sp" />
|
|
|
|
|
</LinearLayout>
|