2022-07-21 11:24:15 +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"
|
2022-07-25 16:04:16 +08:00
|
|
|
android:background="@color/white"
|
2022-07-21 11:24:15 +08:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
2022-07-25 16:04:16 +08:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/top_noback"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="18dp"
|
|
|
|
android:text="@string/message"
|
|
|
|
android:textColor="@color/black3"
|
|
|
|
android:textSize="24sp"
|
|
|
|
android:textStyle="bold" />
|
2022-07-21 11:24:15 +08:00
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/container"
|
|
|
|
android:layout_width="match_parent"
|
2022-07-21 15:05:35 +08:00
|
|
|
android:layout_height="400dp"
|
2022-07-25 16:04:16 +08:00
|
|
|
android:background="@color/white"
|
|
|
|
android:paddingTop="10dp" />
|
2022-07-21 11:24:15 +08:00
|
|
|
</LinearLayout>
|