use of com.google.zxing.view.ViewfinderView in project android-app by eoecn.
the class CaptureActivity method initControl.
private void initControl() {
viewfinderView = (ViewfinderView) findViewById(R.id.viewfinder_view);
mTitle = (TextView) findViewById(R.id.details_textview_title);
mTitle.setText(R.string.scan_title);
mGoHome = (ImageView) findViewById(R.id.details_imageview_gohome);
mGoHome.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
finish();
}
});
}
Aggregations