<?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="wrap_content" android:background="@color/mainBackground" android:orientation="vertical"> <include layout="@layout/include_base_title" /> <View android:layout_width="match_parent" android:layout_height="@dimen/borderThickness" android:background="#BFBFBF" /> <androidx.core.widget.NestedScrollView android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1"> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical"> <include layout="@layout/include_label_object_attribute" /> <View android:layout_width="match_parent" android:layout_height="@dimen/borderThickness" android:background="#BFBFBF" /> <include layout="@layout/include_label_marker_attribute" /> <View android:layout_width="match_parent" android:layout_height="@dimen/borderThickness" android:background="#BFBFBF" /> <include layout="@layout/include_open_camera" /> </LinearLayout> </androidx.core.widget.NestedScrollView> <View android:layout_width="match_parent" android:layout_height="@dimen/borderThickness" android:background="#BFBFBF" /> <LinearLayout android:layout_width="match_parent" android:layout_height="@dimen/titleViewHeight" android:orientation="horizontal"> <Button android:id="@+id/installButton" android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="1" android:background="@drawable/dialog_button_selector" android:gravity="center" android:text="安装" android:textColor="@color/red" android:textSize="@dimen/lib_sp_16" /> <View android:layout_width="@dimen/lib_px_1" android:layout_height="match_parent" android:background="@color/lib_line_color" /> <Button android:id="@+id/readLabelButton" android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="1" android:background="@drawable/dialog_button_selector" android:gravity="center" android:text="读标识器" android:textColor="@color/themeColor" android:textSize="@dimen/lib_sp_16" /> </LinearLayout> </LinearLayout>