<?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:background="@color/white" android:orientation="vertical"> <com.pengxh.kt.lite.widget.TitleBarView android:id="@+id/titleView" android:layout_width="match_parent" android:layout_height="wrap_content" app:tbv_left_image="@drawable/ic_title_left_black" app:tbv_smaller_title="true" app:tbv_text="能力列表" app:tbv_text_color="@color/black" /> <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/priceCodeView" 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/checkTypeView" 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/createView" 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/projectView" 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/basisStandardView" 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/limitRangeView" 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/explainView" 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> </LinearLayout> </androidx.core.widget.NestedScrollView> </LinearLayout>