57 lines
2.1 KiB
XML
57 lines
2.1 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:background="@color/colorSurface">
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:orientation="horizontal"
|
||
|
|
android:gravity="center_vertical"
|
||
|
|
android:padding="16dp">
|
||
|
|
<com.google.android.material.button.MaterialButton
|
||
|
|
android:id="@+id/btn_back"
|
||
|
|
style="@style/Widget.MaterialComponents.Button.TextButton"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="返回" />
|
||
|
|
<TextView
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:text="@string/ai_services_title"
|
||
|
|
android:textSize="20sp"
|
||
|
|
android:textStyle="bold"
|
||
|
|
android:textColor="@color/colorPrimary"
|
||
|
|
android:gravity="center" />
|
||
|
|
<View android:layout_width="48dp" android:layout_height="wrap_content" />
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginStart="16dp"
|
||
|
|
android:layout_marginEnd="16dp"
|
||
|
|
android:layout_marginBottom="12dp"
|
||
|
|
android:text="@string/ai_services_subtitle"
|
||
|
|
android:textSize="13sp"
|
||
|
|
android:textColor="@color/colorTextSecondary" />
|
||
|
|
|
||
|
|
<ScrollView
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:fillViewport="true"
|
||
|
|
android:paddingStart="16dp"
|
||
|
|
android:paddingEnd="16dp"
|
||
|
|
android:paddingBottom="24dp">
|
||
|
|
<LinearLayout
|
||
|
|
android:id="@+id/container_ai_list"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:orientation="vertical" />
|
||
|
|
</ScrollView>
|
||
|
|
</LinearLayout>
|