我们有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>
应用程序可能会注册一个广播接收器,用于监听正在连接的蓝牙设备。然后该接收器启动带有弹出窗口的活动。您有几个选择:
一种解决方案可能是删除清单文件中将意图过滤器注册到接收器(可能是一个活动)的条目。但显然,当蓝牙设备连接时,该应用程序永远不会自动启动。
或者,您可能想更改接收器的逻辑,以便它在重新打开活动之前检查活动是否已经打开。一种方法是在 Activity 本身中执行此操作:根据您希望应用程序的行为方式,您可能需要更改
launchMode="singleTop"
,并使用覆盖方法(例如 isFinishing()
、onNewIntent()
)来确定应用程序是否是重新启动以及为什么。
显然这是正常行为。当某些配置更改时,应用程序会重新创建活动。 可以阻止它,但如果需要,在您的应用程序中处理它很重要。
<activity
android:name=".MyActivity"
android:configChanges="orientation|screenSize|screenLayout|keyboardHidden"
android:label="@string/app_name">
文档中的更多信息和示例 https://developer.android.com/guide/topics/resources/runtime-changes