1234567891011121314151617181920212223242526272829303132 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- tools:context="com.zhong.inspection.ui.PlanScanActivity">
- <ImageView
- android:id="@+id/img_close"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
- <FrameLayout
- android:id="@+id/frame_view"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerHorizontal="true"
- android:layout_centerVertical="true" />
- <Button
- android:id="@+id/but_scan"
- android:layout_width="wrap_content"
- android:layout_height="45dp"
- android:layout_alignParentBottom="true"
- android:layout_centerHorizontal="true"
- android:layout_marginBottom="30dp"
- android:background="@drawable/ic_gbm_scan"
- android:padding="10dp"
- android:text="手动选择设备" />
- </RelativeLayout>
|