package com.himi;
import android.app.Activity;
import android.bluetooth.BluetoothAdapter;
import android.bluetooth.BluetoothDevice;
import android.bluetooth.BluetoothSocket;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.os.Bundle;
import android.view.View;
import android.view.Window;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.Toast;
/**
* @author Himi
* @蓝牙 需要在AndroidMainfest.xml中添加权限
*/
public class MainActivity extends Activity implements OnClickListener {
//按钮组件
public static Button btConnect, btOpen, btIsVisible, btSearch;
//蓝牙适配器
public static BluetoothAdapter btAda;
//UUID协议
public static final String SPP_UUID = "00001101-0000-1000-8000-00805F9B34FB";
//蓝牙连接
public static BluetoothSocket btSocket;
//单利本类
public static MainActivity ma;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
ma = this;
//这里没有设置全屏,为了便于观察当前蓝牙是否打开的状态变化
//getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.main);
//实例按钮
btOpen = (Button) findViewById(R.id.Btn_OpenBt);
btIsVisible = (Button) findViewById(R.id.Btn_BtIsVisible);
btSearch = (Button) findViewById(R.id.Btn_SearchDrives);
btConnect = (Button) findViewById(R.id.Btn_ConnectDrives);
//为按钮绑定监听器
btOpen.setOnClickListener(this);
btIsVisible.setOnClickListener(this);
btSearch.setOnClickListener(this);
btConnect.setOnClickListener(this);
//实例蓝牙适配器
btAda = BluetoothAdapter.getDefaultAdapter();
if (btAda.getState() == BluetoothAdapter.STATE_OFF) {
btOpen.setText("打开蓝牙");
} else if (btAda.getState() == BluetoothAdapter.STATE_ON) {
btOpen.setText("关闭蓝牙");
}
// 注册Receiver来获取蓝牙设备相关的结果
IntentFilter intent = new IntentFilter();
intent.addAction(BluetoothDevice.ACTION_FOUND);// 远程设备发现动作。
intent.addAction(BluetoothDevice.ACTION_BOND_STATE_CHANGED);//远程设备的键态的变化动作。
intent.addAction(BluetoothAdapter.ACTION_SCAN_MODE_CHANGED);//蓝牙扫描本地适配器模改变动作。
intent.addAction(BluetoothAdapter.ACTION_STATE_CHANGED);//状态改变动作
registerReceiver(searchDevices, intent);//注册接收
}
//监听动作
private BroadcastReceiver searchDevices = new BroadcastReceiver() {
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
//搜索设备时,取得设备的MAC地址
if (BluetoothDevice.ACTION_FOUND.equals(action)) {
BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
String str = "设备:" + device.getName() + "*" + device.getAddress();
if (MySurfaceView.vc_str != null) {
if (MySurfaceView.vc_str.size() != 0) {
for (int j = 0; j < MySurfaceView.vc_str.size(); j++) {
// 防止重复添加
if (MySurfaceView.vc_str.elementAt(j).equals(str) == false) {
// 容器添加发现的设备名称和mac地址
MySurfaceView.vc_str.addElement(str);
}
}
} else {
MySurfaceView.vc_str.addElement(str);
}
}
}
}
};
@Override
protected void onDestroy() {
this.unregisterReceiver(searchDevices);
super.onDestroy();
System.exit(0);
}
@Override
public void onClick(View v) {
if (MySurfaceView.gameState != MySurfaceView.CONNTCTED) {
if (v == btOpen) {//蓝牙开关
if (btAda.getState() == BluetoothAdapter.STATE_OFF) {
btAda.enable();
btOpen.setText("关闭蓝牙");
} else if (btAda.getState() == BluetoothAdapter.STATE_ON) {
btAda.disable();
btOpen.setText("打开蓝牙");
}
} else if (v == btIsVisible) {//蓝牙是否可见
Intent intent = new Intent(BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE);
intent.putExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION, 110);
//第二个参数是本机蓝牙被发现的时间,系统默认范围[1-300],超过范围默认300,小于范围默认120
startActivity(intent);
} else if (v == btSearch) {//搜索蓝牙
if (btAda.getState() == BluetoothAdapter.STATE_OFF) {// 如果蓝牙还没打开
Toast.makeText(MainActivity.this, "请先打开蓝牙", 1000).show();
return;
}
setTitle("本机蓝牙地址:" + btAda.getAddress());
MySurfaceView.vc_str.removeAllElements();
btAda.startDiscovery();
} else if (v == btConnect) {
if (MySurfaceView.vc_str.size() == 0) {
Toast.makeText(MainActivity.this, "当前没有设备", 1000).show();
} else {
Intent intent = new Intent();//别忘记声明咱们要打开的这个Activity
intent.setClass(this, ChoiceDrivesList.class);
this.startActivity(intent);
}
}
} else {
Toast.makeText(this, "这里只是一个Demo示例,很多情况没有进行处理,为了等出现误操作造成异常,请重新运行项目!", Toast.LENGTH_LONG).show();
this.finish();
}
}
}
没有合适的资源?快使用搜索试试~ 我知道了~
Android应用源码之(蓝牙对战游戏.zip项目安卓应用源码下载
共33个文件
class:15个
java:5个
xml:3个
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
0 下载量 38 浏览量
2022-03-07
18:43:45
上传
评论
收藏 82KB ZIP 举报
温馨提示
Android应用源码之(蓝牙对战游戏.zip项目安卓应用源码下载Android应用源码之(蓝牙对战游戏.zip项目安卓应用源码下载 1.适合学生毕业设计研究参考 2.适合个人学习研究参考 3.适合公司开发项目技术参考
资源推荐
资源详情
资源评论
收起资源包目录
Android应用源码之(蓝牙对战游戏.zip (33个子文件)
Android应用源码之(蓝牙对战游戏
Android应用源码之(蓝牙对战游戏
6-9(蓝牙对战游戏)
BlueToothProject
AndroidManifest.xml 992B
res
layout
main.xml 2KB
drawable-ldpi
icon.png 2KB
drawable-mdpi
icon.png 3KB
drawable-hdpi
icon.png 4KB
values
strings.xml 394B
proguard.cfg 1KB
src
com
himi
MainActivity.java 5KB
MySurfaceView.java 4KB
ConnectThread.java 2KB
ChoiceDrivesList.java 2KB
bin
MainActivity.apk 21KB
com
himi
ChoiceDrivesList$2.class 1KB
MainActivity$1.class 2KB
BlueToothServer.class 1KB
MySurfaceView.class 5KB
ChoiceDrivesList$3.class 862B
ChoiceDrivesList$1.class 887B
R.class 461B
MainActivity.class 4KB
R$layout.class 364B
R$attr.class 310B
ChoiceDrivesList.class 2KB
R$id.class 510B
R$string.class 563B
R$drawable.class 370B
ConnectThread.class 2KB
classes.dex 14KB
resources.ap_ 12KB
.classpath 280B
assets
default.properties 362B
.project 852B
gen
com
himi
R.java 1KB
共 33 条
- 1
资源评论
yxkfw
- 粉丝: 81
- 资源: 2万+
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 图像处理中的White Patch算法来实现白平衡,MATLAB实现
- Python 爬虫:把廖雪峰的教程转换成 PDF 电子书
- 2024 年 Java 开发人员路线图.zip
- matplotlib-3.7.5-cp38-cp38-win-amd64.whl
- Android TV 开发框架: 包含 移动的边框,键盘,标题栏
- 图像处理中白平衡算法之一的灰度世界算法的MATLAB实现
- Cython-3.0.10-cp38-cp38-win-amd64.whl
- zotero安卓版"Zotero Beta"版本1.0.0-118
- Web应用项目开发的三层架构
- 基于QT和OpenCV的Mask编辑工具(python源码)
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功