0

我有一个包含两个活动的简单应用程序。一个建立蓝牙连接的连接活动;还有一个 PollTaker Activity,它获取消息并从那里操作数据。

清单是这样的:http: //pastebin.com/xFs3AdrF

当应用程序启动时,它应该以一个连接活动开始,这也是默认的,并加载以下内容视图: http: //pastebin.com/KCDeAki1

我去检查了以前的问题,这是我能找到的最接近的问题:新应用程序在启动时崩溃,调试没有帮助

但是,我在 onCreate 中调用 setContentView() 后设置了组件。我是误解了什么还是我错误地实现了这个?

我的连接活动代码:http: //pastebin.com/GcZyDayc

编辑:忘了提到我写了自己的调试日志,所有显示的是登录 onCreate()。

4

1 回答 1

0

After testing it turned out to be something with my Android SDK Files with BT. As soon as I commented out the

btAdapter = BluetoothAdapter.getDefaultAdapter();
CheckBTState();

in my connection class my app loaded up the first page. However this confuses me since the test app I based this on uses the same Adapter Test to enable it at start with no problems. Probably incorrectly loaded SDK files.

EDIT: Newbie Developer mistake. I forgot to add the user permissions for BT in my manifest. (Doh...)

于 2013-09-09T00:40:09.807 回答