我们有Android原生多标签条形码应用程序,其中包含蓝牙设备输入条形码的条形码字段。午餐时这个手机,它首先有一个弹出窗口让用户选择标签。问题是,每当蓝牙设备连接或断开连接到移动设备时,应用程序总是会通过此弹出窗口重新启动。当蓝牙设备连接或断开时,我们如何阻止移动重启?
我附加了AndroidManifest.xml:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mentor.med.mobile"
android:versionCode="1"
android:versionName="1.0.1" >
<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="17" />
<uses-permission android:name="android.permission.CAMERA" />
<application
android:allowBackup="true"
android:icon="@drawable/med"
android:label="@string/app_name"
android:screenOrientation="sensorPortrait"
android:theme="@style/AppTheme" >
<activity
android:name="com.pdx.MainActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
android:windowSoftInputMode="adjustPan"
android:launchMode="singleTop"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:scheme="http" android:host="pdx.com" android:path="/view" />
</intent-filter>
</activity>
<activity
android:name="com.google.zxing.client.android.CaptureActivity"
android:configChanges="orientation|keyboardHidden"
android:screenOrientation="landscape"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
android:windowSoftInputMode="stateAlwaysHidden" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter>
<action android:name="com.google.zxing.client.android.SCAN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
</manifest>
答案 0 :(得分:1)
应用程序可能注册一个广播接收器,该接收器侦听正在连接的蓝牙设备。接收器然后用弹出窗口启动Activity。您有几个选择:
一种解决方案可能是删除清单文件中的条目,该条目将意图过滤器注册到接收方(它可能是一个活动)。但很明显,当蓝牙设备连接时,应用程序将永远不会自动启动。
或者,您可能希望更改接收器的逻辑,以便在重新打开活动之前检查活动是否已打开。一种方法是在Activity本身中执行此操作:根据您希望应用程序的行为方式,您可能需要更改launchMode="singleTop"
,并使用覆盖方法,例如isFinishing()
,onNewIntent()
确定应用程序是否正在重新启动以及原因。