我们的项目包括制作一个处理团体付款的应用程序。 您可以通过扫描包含要加入的组ID的QRCode来加入组。 我们已经开展了一项活动" AddOrJoinActivity"您可以在其中创建或加入组(通过扫描QR码)。 我创建了一个包含CustomScanner的新Activity。 然而问题是以下。 我在" AddOrJoinActivity"中呼叫海关扫描程序。但是一旦代码被扫描,我希望程序打开活动" Groupdetails"包含他/她刚刚加入的小组的所有细节。
我尝试了以下内容: 在" AddOrJoinActivity"
IntentIntegrator ii = new IntentIntegrator(this)
ii.setCaptureActivity(CustomScanner.class).initiateScan();
在" CustomScanner"
barcodeView =(CompoundBarcodeView)findViewById(R.id.customViewBarcode);
capture = new CaptureManager(this,barcodeView);
capture.initializeFromIntent(getIntent(),savedInstanceState);
capture.decode();
我尝试在Customscanner中创建一个包含GroupsDetailActivity的新意图,并在capture.initializeFromIntent()中使用它,但这并不起作用。
如何从CustomScanner启动groupdetails活动?
提前致谢
答案 0 :(得分:1)
你看过这个教程吗? http://code.tutsplus.com/tutorials/android-sdk-create-a-barcode-reader--mobile-17162
在您的情况下,扫描后,在<android.support.v4.widget.DrawerLayout
android:id="@+id/drawer_layout"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start">
<android.support.design.widget.CoordinatorLayout
android:id="@+id/main_coordinator_layout"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay"
android:fitsSystemWindows="true">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:layout_scrollFlags="scroll|enterAlways"
app:popupTheme="@style/ThemeOverlay.AppCompat.ActionBar"/>
<android.support.design.widget.TabLayout
android:id="@+id/subcategory_spots_pager_tablayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:visibility="gone"
app:tabGravity="fill"
app:tabMode="fixed"
style="@style/MyCustomTabLayout"/>
</android.support.design.widget.AppBarLayout>
<RelativeLayout
android:id="@+id/scrolling_content_relative_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<!-- Content -->
</RelativeLayout>
</android.support.design.widget.CoordinatorLayout>
<android.support.design.widget.NavigationView
android:id="@+id/drawer_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="@color/white"
android:fitsSystemWindows="true">
<!-- Content -->
</android.support.design.widget.NavigationView>
的代码中,方法AddOrJoin
将自动执行。在那种方法中,您将检索您的扫描结果,并且可以在数据库中实现神奇。
魔术后开始新的活动:
onActivityResult
这是我的意见。