| | |
| | | android:textSize="16sp" /> |
| | | </LinearLayout> |
| | | |
| | | <!-- 项目号输入框 - 仅在区域表号卡时显示 --> |
| | | <LinearLayout |
| | | android:id="@+id/project_number_layout" |
| | | android:layout_width="match_parent" |
| | | android:layout_height="wrap_content" |
| | | android:orientation="horizontal" |
| | | android:padding="16dp" |
| | | android:visibility="gone"> |
| | | |
| | | <TextView |
| | | android:layout_width="wrap_content" |
| | | android:layout_height="wrap_content" |
| | | android:text="项目号:" |
| | | android:textColor="#333333" |
| | | android:textSize="16sp" /> |
| | | |
| | | <EditText |
| | | android:id="@+id/project_number_et" |
| | | android:layout_width="match_parent" |
| | | android:layout_height="wrap_content" |
| | | android:background="@null" |
| | | android:hint="请输入项目号(1-255)" |
| | | android:inputType="number" |
| | | android:maxLength="3" |
| | | android:text="@={viewModel.projectNumber}" |
| | | android:textSize="16sp" /> |
| | | </LinearLayout> |
| | | |
| | | <LinearLayout |
| | | android:layout_width="match_parent" |
| | | android:layout_height="wrap_content" |