<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/rootView" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@color/white" android:orientation="vertical"> <include layout="@layout/include_base_title" /> <View android:layout_width="match_parent" android:layout_height="@dimen/borderThickness" android:background="@color/hintColor" /> <androidx.core.widget.NestedScrollView android:layout_width="match_parent" android:layout_height="wrap_content"> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical" android:paddingHorizontal="@dimen/dp_10"> <RelativeLayout style="@style/itemLayoutStyle"> <TextView style="@style/textViewStyle" android:text="文件编号" /> <TextView android:id="@+id/fileCodeView" style="@style/detailTextViewStyle" android:text="@string/loading_value" /> </RelativeLayout> <include layout="@layout/include_line_view" /> <RelativeLayout style="@style/itemLayoutStyle"> <TextView style="@style/textViewStyle" android:text="文件号" /> <TextView android:id="@+id/fileNumberView" style="@style/detailTextViewStyle" android:text="@string/loading_value" /> </RelativeLayout> <include layout="@layout/include_line_view" /> <RelativeLayout style="@style/itemLayoutStyle"> <TextView style="@style/textViewStyle" android:text="类别" /> <TextView android:id="@+id/categoryView" style="@style/detailTextViewStyle" android:text="@string/loading_value" /> </RelativeLayout> <include layout="@layout/include_line_view" /> <RelativeLayout style="@style/itemLayoutStyle"> <TextView style="@style/textViewStyle" android:text="发布单位" /> <TextView android:id="@+id/publisherView" style="@style/detailTextViewStyle" android:text="@string/loading_value" /> </RelativeLayout> <include layout="@layout/include_line_view" /> <RelativeLayout style="@style/itemLayoutStyle"> <TextView style="@style/textViewStyle" android:text="实施时间" /> <TextView android:id="@+id/implementTimeView" style="@style/detailTextViewStyle" android:text="@string/loading_value" /> </RelativeLayout> <include layout="@layout/include_line_view" /> <RelativeLayout style="@style/itemLayoutStyle"> <TextView style="@style/textViewStyle" android:text="实施状态" /> <TextView android:id="@+id/implementStateView" style="@style/detailTextViewStyle" android:text="@string/loading_value" /> </RelativeLayout> <include layout="@layout/include_line_view" /> <RelativeLayout style="@style/itemLayoutStyle"> <TextView style="@style/textViewStyle" android:text="创建时间" /> <TextView android:id="@+id/createTimeView" style="@style/detailTextViewStyle" android:text="@string/loading_value" /> </RelativeLayout> <include layout="@layout/include_line_view" /> <RelativeLayout style="@style/itemLayoutStyle"> <TextView style="@style/textViewStyle" android:text="备注" /> <TextView android:id="@+id/remarkView" style="@style/detailTextViewStyle" android:text="@string/loading_value" /> </RelativeLayout> <include layout="@layout/include_line_view" /> <RelativeLayout style="@style/itemLayoutStyle"> <TextView style="@style/textViewStyle" android:text="附件" /> <TextView android:id="@+id/annexView" style="@style/detailTextViewStyle" android:text="@string/loading_value" /> </RelativeLayout> </LinearLayout> </androidx.core.widget.NestedScrollView> </LinearLayout>