0

我正在尝试为我的软件添加齿轮配合支持。

基本上,当发生众所周知的事件时,我会尝试在齿轮上创建一个显示一些数据的对话框。

好吧,当我在全新安装后运行我的软件时,一切都按预期工作,并且它继续运行良好,直到手机重新启动。重新启动后,齿轮配合对话框不再出现。

测试是在运行 Android 4 和 Android 5 的 note2 和 note 3 上执行的。两者的结果相同。

当一切正常时,logcat 会显示类似的东西。

04-14 18:25:17.570: I/ScupDialog(17663): New Dialog (100)
04-14 18:25:17.590: W/ContextImpl(17663): Implicit intents with startService are not safe: Intent { act=com.samsung.android.sdk.cup.ScupService } android.content.ContextWrapper.bindService:559 com.samsung.android.sdk.cup.ScupServiceCommunicator.connect:-1 com.samsung.android.sdk.cup.ScupDialog.construction:-1 
04-14 18:25:17.600: D/VibratorService(754): Turning vibrator off - ImmVibe.
04-14 18:25:17.600: V/VibratorService(754): vibrateMagnitude - package: com.villa.android.orari3, ms: 2000, token: null, magnitude: 2000
04-14 18:25:17.620: I/ScupService(1391): setCallback from com.villa.android.orari3
04-14 18:25:17.620: D/ScupService(1391): found app id = 3
04-14 18:25:17.620: D/ScupService(1391): isConnected.. 
04-14 18:25:17.630: I/ScupDialog(17663): Add dialog (100)
04-14 18:25:17.640: I/ScupService(1391): sendCommand()
04-14 18:25:17.640: D/ScupService(1391): command type : COMMAND_DATA

而重新启动后行为不同

04-14 18:19:08.221: I/ScupDialog(10822): New Dialog (101)
04-14 18:19:08.231: W/ContextImpl(10822): Implicit intents with startService are not safe: Intent { act=com.samsung.android.sdk.cup.ScupService } android.content.ContextWrapper.bindService:559 com.samsung.android.sdk.cup.ScupServiceCommunicator.connect:-1 com.samsung.android.sdk.cup.ScupDialog.construction:-1 
04-14 18:19:08.241: I/ScupDialog(10822): Add dialog (101)
04-14 18:19:08.251: I/ScupService(1391): sendCommand()
04-14 18:19:08.261: E/ScupService(1391): Fail to find client info. 
04-14 18:19:08.261: E/ScupService(1391): Package name : com.villa.android.orari3
04-14 18:19:08.261: D/VibratorService(754): Turning vibrator off - ImmVibe.
04-14 18:19:08.271: V/VibratorService(754): vibrateMagnitude - package: com.villa.android.orari3, ms: 2000, token: null, magnitude: 2000

有没有人经历过这种行为?

感谢您的任何建议。

新品

4

1 回答 1

0

那么DIY和解决。对于谁在乎..问题位于清单文件中。基本上,意图过滤器定义位于错误的位置。在第一次安装期间,cupservice 功能将应用程序放在“授权应用程序”列表中。这允许程序在第一次安装后运行。当重新启动时,ScupService 扫描您的应用程序以找到“授权”应用程序。意图过滤器错误位置的定义意味着不允许....这就是我的程序无法再驱动齿轮配合的原因。

我希望这可以帮助别人。

新品

于 2015-04-19T15:50:32.840 回答