| | |
| | | |
| | | import android.annotation.SuppressLint; |
| | | import android.os.Bundle; |
| | | import android.view.View; |
| | | import android.widget.TextView; |
| | | import android.widget.Toast; |
| | | |
| | |
| | | private static final String TAG = "SourceBindActivity"; |
| | | private QrCodeView qrcodeView; |
| | | private TextView responseTv; |
| | | private View view; |
| | | |
| | | @Override |
| | | protected void onCreate(Bundle savedInstanceState) { |
| | |
| | | private void initView() { |
| | | qrcodeView = findViewById(R.id.qrcode_view); |
| | | responseTv = findViewById(R.id.response_tv); |
| | | view = findViewById(R.id.rl_back); |
| | | view.setOnClickListener(new View.OnClickListener() { |
| | | @Override |
| | | public void onClick(View v) { |
| | | finish(); |
| | | } |
| | | }); |
| | | createBindQRCodeInfo(); |
| | | } |
| | | |