Android询问用于扫描条形码的应用程序

时间:2012-09-18 15:57:18

标签: android zxing barcode-scanner

我在我的应用程序中使用zxing扫描条形码,我已经扫描好了。我们有几个可以扫描的应用程序(每个客户都有不同的品牌应用程序),我看到当我启动Activity扫描条形码时,手机会询问我想要使用哪个应用程序。这有两个问题。首先,我希望每个应用程序在单击扫描按钮时始终使用ITSELF作为扫描应用程序,其次,我不想要其他应用程序,我没有尝试使用我的应用程序扫描条形码。

如何强制执行第一项并阻止第二项?我试图找到可以放入清单的东西,但是没有提出任何东西。

编辑 - 这是清单(有些信息被遮挡)(应用程序呈现LoginActivity,然后屏幕带有扫描按钮(MainActivity),然后将条形码发送到返回更多信息的网站,显示在ResultActivity中):

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.MyCompany.MyApp"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="10" />

    <uses-permission android:name="android.permission.CAMERA" />
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.READ_PHONE_STATE" />
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />

    <uses-feature
        android:name="android.hardware.camera"
        required="true" />

    <application
        android:icon="@drawable/logo"
        android:label="@string/app_name"
        android:theme="@style/MyTheme" >
        <activity
            android:name="com.MyCompany.MyApp.LoginActivity"
            android:clearTaskOnLaunch="true"
            android:label="@string/app_name"
            android:windowSoftInputMode="stateHidden" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.MyCompany.MyApp.MainActivity"
            android:label="@string/app_name" >
        </activity>
        <activity
            android:name="com.MyCompany.MyApp.HelpActivity"
            android:label="@string/app_name" >
        </activity>
        <activity
            android:name="com.MyCompany.MyApp.ResultActivity"
            android:label="@string/app_name" >
        </activity>
        <activity
            android:name="com.google.zxing.client.android.CaptureActivity"
            android:configChanges="orientation|keyboardHidden"
            android:exported="false"
            android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
            android:windowSoftInputMode="stateAlwaysHidden" >
            <intent-filter>
                <action android:name="com.google.zxing.client.android.SCAN" />

                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
    </application>

</manifest>

2 个答案:

答案 0 :(得分:1)

解决方案是在意图上设置动作

Intent intent = new Intent(this,com.google.zxing.client.android.CaptureActivity.class); intent.setAction(com.google.zxing.client.android.Intents.Scan.ACTION); startActivityForResult(intent,0);

这对我有用。

答案 1 :(得分:0)

它们实际上是同一个问题......你是否打算通过意图使用扫描仪来调用zxing?如果是这样,您自己的应用程序可能会听到相同的意图,这会导致他们在您开始扫描时做出反应。

您可以检查清单中是否有具有扫描意图过滤器的活动。

----------- ---------更新

CaptureActivity具有Scan的intent过滤器。这就是原因。如果您已将zxing的代码嵌入到应用中而不是调用其应用,则可以删除此意图过滤器。