summaryrefslogtreecommitdiff
path: root/sample/src/main/java/example/zxing/SmallCaptureActivity.java
blob: c4baa8ed44e55bea0849f520bd92a0b7be1ef772 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package example.zxing;

import com.journeyapps.barcodescanner.CaptureActivity;
import com.journeyapps.barcodescanner.DecoratedBarcodeView;

/**
 * This activity has a margin.
 */
public class SmallCaptureActivity extends CaptureActivity {
    @Override
    protected DecoratedBarcodeView initializeContent() {
        setContentView(R.layout.capture_small);
        return (DecoratedBarcodeView)findViewById(R.id.zxing_barcode_scanner);
    }
}