扫描,生成二维码

在这里插入图片描述

扫描,生成二维码

<?xml version="1.0" encoding="utf-8"?>

<Button
    android:id="@+id/button"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="开启扫描"
     />
<EditText
    android:id="@+id/edit"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:hint="请输入"/>
<Button
    android:id="@+id/button1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="获取二维码"/>

<ImageView
    android:id="@+id/image"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    tools:srcCompat="@tools:sample/avatars" />

public class MainActivity extends AppCompatActivity {

private Button btn,btn1;
private EditText edit;
private ImageView image;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    btn = findViewById(R.id.button);
    btn1 = findViewById(R.id.button1);
    edit = findViewById(R.id.edit);
    image = findViewById(R.id.image);
    btn.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            Intent intent = new Intent(MainActivity.this,CaptureActivity.class);
            startActivityForResult(intent,1);
        }
    });
    btn1.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            String s = edit.getText().toString();
            if(TextUtils.isEmpty(s)){
                return;
            }
            Bitmap bitmap = CodeUtils.createImage(s, 400, 400, BitmapFactory.decodeResource(getResources(), R.mipmap.ic_launcher));
            image.setImageBitmap(bitmap);
        }
    });
}

@Override
protected void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) {
    super.onActivityResult(requestCode, resultCode, data);
    if(requestCode == 1){
        if(data!=null){
            Bundle bundle = data.getExtras();
            if(bundle==null){
                return;
            }
            if(bundle.getInt(CodeUtils.RESULT_TYPE)==CodeUtils.RESULT_SUCCESS){
                String string = bundle.getString(CodeUtils.RESULT_STRING);
                Toast.makeText(this,"解析结果"+string,Toast.LENGTH_SHORT).show();
            }else if(bundle.getInt(CodeUtils.RESULT_TYPE)==CodeUtils.RESULT_FAILED){
                Toast.makeText(this,"扫描失败",Toast.LENGTH_SHORT).show();
            }
        }
    }
}

}

public class MyApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
ZXingLibrary.initDisplayOpinion(this);
}
}

猜你喜欢

转载自blog.csdn.net/weixin_42791904/article/details/83831416