gpt4 book ai didi

java - 将 zxing 二维码扫描仪集成到我的 Android 应用程序中时遇到困难

转载 作者:行者123 更新时间:2023-12-01 23:14:19 24 4
gpt4 key购买 nike

已经开始使用 android studio 开发我的第一个“真正”的 Android 原创应用程序,所以我对它仍然非常陌生,尽管我有 java 经验。我的应用程序涉及使用二维码扫描仪并使用它输出的内容(具体用途将与比特币地址一起使用)。

我在集成二维码扫描仪时遇到了真正的问题,老实说,我真的不在乎是否知道它是使用 Intent 调用还是我在内部使用库,我只是想以最简单的方式做到这一点。我的问题是我真的不明白如何导入包以及不导入包,而且我很难找到有关如何在线执行此操作的详细说明。

理想的方法是按下按钮,打开扫描仪,当您扫描代码时,它将转到另一个 Activity ,您可以在其中查看输出,然后选择您想要用它做什么。

这是我的主要 Activity (如果您可以将其用于任何用途):

package com.JunkerDevBlog.bitcoinaddresssender;

import android.content.Intent;
import android.support.v7.app.ActionBarActivity;
import android.support.v7.app.ActionBar;
import android.support.v4.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.ViewGroup;
import android.os.Build;
import android.widget.Button;
import android.widget.EditText;

public class MainActivity extends ActionBarActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

if (savedInstanceState == null) {
getSupportFragmentManager().beginTransaction()
.add(R.id.container, new PlaceholderFragment())
.commit();
}
}


@Override
public boolean onCreateOptionsMenu(Menu menu) {

// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}

public void scan(View view) {

Intent intent = new Intent(this, ScanActivity.class);

startActivity(intent);

}


@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}

/**
* A placeholder fragment containing a simple view.
*/
public static class PlaceholderFragment extends Fragment {

public PlaceholderFragment() {
}

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_main, container, false);
return rootView;
}
}

}

我也正在使用 android studio,非常感谢您的帮助。

最佳答案

如果你正确设置了Zxing,只需要下面的代码...

IntentIntegrator.initiateScan(BarcodeActivity.this, R.layout.capture, R.id.viewfinder_view, R.id.preview_view, true); // Call the Scanner Intenet

在这里你可以得到条码阅读器的返回结果

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
switch (requestCode) {
case IntentIntegrator.REQUEST_CODE:
IntentResult scanResult = IntentIntegrator.parseActivityResult(
requestCode, resultCode, data);
if (scanResult == null) {
return;
}
final String result = scanResult.getContents(); // Your result

if (result != null) {
System.out.print("Your result is: " + result);
}
break;
default:
}
}

LayoutCapture.xml

<?xml version="1.0" encoding="UTF-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent">

<SurfaceView android:id="@+id/preview_view"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:layout_centerInParent="true" />

<jim.h.common.android.zxinglib.view.ViewfinderView
android:id="@+id/viewfinder_view" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:background="#00000000" />

<TextView android:id="@+id/status_view" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_gravity="bottom|center_horizontal"
android:background="#00000000"
android:textColor="#ffffffff" android:textSize="14sp" />
</FrameLayout>

关于java - 将 zxing 二维码扫描仪集成到我的 Android 应用程序中时遇到困难,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21463743/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com