1234567891011121314151617181920212223242526 |
- <?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.ScanActivity">
- <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="match_parent"
- android:layout_height="45dp"
- android:background="@drawable/ic_gbm_scan"
- android:layout_alignParentBottom="true"
- android:text="二维码缺失,模糊" />
- </RelativeLayout>
|