<?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:id="@+id/rootView" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <com.pengxh.androidx.lite.widget.TitleBarView android:id="@+id/titleView" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@color/white" app:tbv_left_image="@drawable/ic_left_black" app:tbv_show_right_image="false" app:tbv_smaller_title="true" app:tbv_text="帮助中心" app:tbv_text_color="@color/mainTextColor" /> <include layout="@layout/include_line_view" /> <androidx.core.widget.NestedScrollView android:layout_width="match_parent" android:layout_height="wrap_content" android:scrollbars="vertical"> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@color/white" android:lineSpacingMultiplier="1.2" android:padding="@dimen/dp_10" android:text="@string/help_content" android:textColor="@color/black" android:textSize="@dimen/sp_16" /> </androidx.core.widget.NestedScrollView> </LinearLayout>