Android蓝牙开发(一)

      最近心血来潮想做一个难度不算太大的小项目,就算是给自己练练手。大概就是手机的蓝牙与电脑蓝牙连接,然后把手机模拟成鼠标变成蓝牙鼠标。首先让我们简单分析一下这个项目的技术需求和结构。

 

Android手机端:

    需要运行一个程序,能够控制蓝牙,并且通过蓝牙发送控制指令。

PC端:

   需要运行一个程序,将蓝牙发送的控制指令解析,然后调用API控制鼠标。

 

以上就是所有的东西了。欢迎大家一起探讨。首先让我们一起来进行Android手机端的开发!

首先我们要让程序具有读取蓝牙控制蓝牙的权限,在Mainifest中写上相应的权限:

<uses-permission android:name="android.permission.BLUETOOTH" /> <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />

 

然后我们设计一个非常简单的界面,如下图:

 

 

Android蓝牙开发(一)_第1张图片

这是我在Eclipse中的截图,不是真机或者模拟机上的截图,所以比较丑,布局什么的可以自己调。打开蓝牙就是打开本地的蓝牙,设置本机可见性就是将蓝牙设置对外可见,开始扫描周围设备就是扫描周围蓝牙设备,PC端的蓝牙要设置可见才能被扫描到,上下左右对应鼠标的移动(可以有更好的方式代替!)

main.xml的源代码:

<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" > <Button android:id="@+id/btopen" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="打开蓝牙" /> <Button android:id="@+id/btset" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="设置本机可见性" /> <Button android:id="@+id/btscan" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="开始扫描周围设备" /> <Button android:id="@+id/btup" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="上" /> <Button android:id="@+id/btdown" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="下" /> <Button android:id="@+id/btleft" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="左" /> <Button android:id="@+id/btright" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="右" /> </LinearLayout>

Java代码待补~~~

你可能感兴趣的:(java,eclipse,android,layout,手机,encoding)