You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BarcodeCaptureFragment fragment =BarcodeCaptureFragment.instantiate(mode, formats);
47
+
getSupportFragmentManager().beginTransaction()
48
+
.add(R.id.container, fragment)
49
+
.commit();
50
+
```
51
+
Then make the the `Activity` implement the `BarcodeCaptureFragment.BarcodeScanningListener` so that you can receive results from the fragment or you can set the listener directly to the fragment
0 commit comments