我的蓝牙Android应用程序不起作用

时间:2012-10-01 04:00:59

标签: java android bluetooth

我正在开发一个项目来制作支持蓝牙的Android应用。

我的应用不起作用!有一个弹出式窗口,说不幸的是,蓝牙led(我的应用名称)已经停止,我又回到了小部件屏幕。 在我的XML文件中显示是否存在问题?

我的布局XML代码:

<LinearLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<TextView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" />

<Button
    android:id="@+id/buttonON"
    android:layout_width="100dp"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:text="Turn LED On" />

<Button
    android:id="@+id/buttonOFF"
    android:layout_width="100dp"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:text="Turn LED Off" />

1 个答案:

答案 0 :(得分:0)

最常见的答案是,您在线程中执行的任务需要花费太多时间,因此任务结果无响应且应用程序因此而被终止。可能的解决方案是:

  1. 改善应用程序的业务逻辑
  2. 在单独的线程中完成您的任务
  3. 采用异步方法