gpt4 book ai didi

一旦连接或断开蓝牙设备,Android 移动应用程序总是会重新启动

转载 作者:行者123 更新时间:2023-11-30 02:41:12 25 4
gpt4 key购买 nike

我们有 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。您有几个选择:

一个解决方案可能是删除 list 文件中将 Intent 过滤器注册到接收器(它可能是一个 Activity )的条目。但显然,当连接蓝牙设备时,该应用程序永远不会自动启动。

或者,您可能想要更改接收器的逻辑,以便它在重新打开之前检查 Activity 是否已经打开。一种方法是在 Activity 本身中执行此操作:根据您希望应用程序的行为方式,您可能需要更改 launchMode="singleTop",并使用覆盖方法,例如 isFinishing ()onNewIntent() 以确定应用程序是否正在重启以及原因。

关于一旦连接或断开蓝牙设备,Android 移动应用程序总是会重新启动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25734849/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com