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"
    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_only_show_title="false"
        app:tbv_right_image="@drawable/ic_title_right_black"
        app:tbv_show_left_image="true"
        app:tbv_show_right_image="false"
        app:tbv_text="能力列表"
        app:tbv_text_color="@color/black"
        app:tbv_text_size="@dimen/sp_16" />

    <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>