我必须在主布局中添加QRCode扫描布局,而不是调用新活动来加载相机进行扫描。
我已经使用ZXing库完成了那部分。所以我创建了这样的布局。
<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">
<SurfaceView
android:id="@+id/preview_view"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
<zxing.ViewfinderView
android:id="@+id/viewfinder_view"
android:layout_width="match_parent"
android:layout_height="250dp"
android:layout_centerInParent="true"
android:padding="10dp" />
<TextView
android:id="@+id/status_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|center_horizontal"
android:background="@color/transparent"
android:text="@string/msg_default_status"
android:textColor="@color/status_text"
android:visibility="gone" />
<Button
android:id="@+id/btn_cancel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:layout_below="@+id/viewfinder_view"
android:layout_gravity="bottom"
android:layout_marginEnd="15dp"
android:layout_marginRight="15dp"
android:layout_marginTop="15dp"
android:text="Cancel"
android:visibility="gone" />
<!--</merge>-->
然后我从ZXing Lib调用了CaptureActivity, 如果第一次加载相机进行扫描,则会询问该许可并显示此消息。对不起,Android相机遇到了问题。您可能需要重新启动设备。 所以 1. 如果我关闭相机,然后单击打开的相机按钮,然后它正在工作。 2.我需要为下面的图像屏幕创建自定义扫描布局。