Newer
Older
Meterage / app / src / main / res / layout / activity_capability_detail.xml
<?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:padding="@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>