Java 如何在Zxing扫描仪相机视图中添加按钮

Java 如何在Zxing扫描仪相机视图中添加按钮,java,android,xml,qr-code,zxing,Java,Android,Xml,Qr Code,Zxing,我当前的Zxing扫描仪屏幕如下所示 我想在上面添加一个文本视图和几个按钮,我已经尝试了很多程序,但都没有效果,任何人都无法指导我,我将谦恭地期待您的帮助 这是密码 Java文件: private ZXingScannerView mScannerView; @Override public void onCreate(Bundle state) { super.onCreate(state); setContentView(R.layo

我当前的Zxing扫描仪屏幕如下所示

我想在上面添加一个文本视图和几个按钮,我已经尝试了很多程序,但都没有效果,任何人都无法指导我,我将谦恭地期待您的帮助

这是密码

Java文件:

    private ZXingScannerView mScannerView;
    @Override
    public void onCreate(Bundle state) {
        super.onCreate(state);
        setContentView(R.layout.activity_qrresult);
        mScannerView = new ZXingScannerView(this); 
        setContentView(mScannerView);              


    }

    @Override
    public void onResume() {
        super.onResume();
        mScannerView.setResultHandler(this); 
        mScannerView.startCamera();          
        Toast.makeText(getApplicationContext(),"Scan QR code to Send 
     Money",Toast.LENGTH_LONG).show();
    }

    @Override
    public void onPause() {
        super.onPause();
        mScannerView.stopCamera();           // Stop camera on pause
    }

    @Override
    public void handleResult(Result rawResult) {
        // Do something with the result here
        if(rawResult.getText().toString().equals("Test Ewallet Test")){
            Toast.makeText(getApplicationContext(), rawResult.getText(), 
    Toast.LENGTH_SHORT).show();
            Intent go = new Intent(qrresult.this,sendmoney.class);
            startActivity(go);

        }else {
            Toast.makeText(getApplicationContext(), "Couldn't scan the 
     QRcode, Please Try again ", Toast.LENGTH_SHORT).show();

            mScannerView.resumeCameraPreview(this);
        }



        // mScannerView.resumeCameraPreview(this);

        // If you would like to resume scanning, call this method below:
        //mScannerView.resumeCameraPreview(this);
    }
}
这里是xml文件

 <?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.example.tajveezrehman.applicationtest.yourqr">

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:layout_alignParentTop="true"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true">

    <Button
        android:id="@+id/flashlight"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="0.8"
        android:text="Button" />

    <Button
        android:id="@+id/open image"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="0.8"
        android:text="Button" />

    <TextView
        android:id="@+id/camtxt"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginTop="20dp"
        android:layout_weight="0.8"
        android:text="@string/scanner"
        android:textAlignment="center"
        android:textColor="#000000"
        android:textSize="20sp" />

  </LinearLayout>

 </RelativeLayout>

使用
RelativeLayout
如下:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<me.dm7.barcodescanner.zxing.ZXingScannerView
    android:id="@+id/zxscan"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
   />

<ImageView
    android:id="@+id/btn_flash"
    android:layout_marginBottom="15dp"
    android:layout_centerHorizontal="true"
    android:layout_alignParentBottom="true"
    android:src="@drawable/flash_100"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />

它看起来像:


应用程序崩溃,它给出“应用程序已停止”请检查我发布的日志删除
setContentView(mScannerView)从java文件替换mScannerView=new ZXingScannerView(此)带有
mScannerView=(ZXingScannerView)findViewById(R.id.zxscan)ZXingScannerView zscanner=(ZXingScannerView)findViewById(R.id.zxscan);mScannerView=新ZXingScannerView(此);//以编程方式初始化扫描程序视图zscanner.addView(mScannerView);我在用这个,它能用,行吗?