登录
首页 » Android » 安卓数独小游戏

安卓数独小游戏

于 2022-03-30 发布 文件大小:658.26 kB
0 171
下载积分: 2 下载次数: 1

代码说明:

一款简单的安卓数独小游戏,适合刚刚开始学安卓的人学习,见面简单,程序清晰,简单易懂

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • android 获取某一网址上的图片
    本程序是从网上下载图片,由于此操作是比较耗时的操作,为了防止UI主线程的阻塞,此源码将这个操作放在了AsyncTask异步任务中去执行。
    2022-02-12 10:53:55下载
    积分:1
  • Android版的推箱子游戏源代码
    推箱子游戏似乎在哪种编程语言下都可见到,本次源码是一个运行于Android版本的推箱子游戏,源代码中有丰富的注释,通过这个代码你可以了解到许多比较系统的Android技巧,比如坐标控制、物体移动控制及追踪、键盘监听线程类、地图类、无极移动类、 锁定整个画布、时间操作处理等,对于Android初级学者,是很有用的参考范例。
    2022-02-13 23:28:29下载
    积分:1
  • EntryTest
    Entry Test Source Code for Andriod.
    2013-11-12 11:44:19下载
    积分:1
  • 2015全国大学生电子设计竞赛风力摆
    说明:  脉冲宽度调制是一种模拟控制方式,根据相应载荷的变化来调制晶体管基极或MOS管栅极的偏置,来实现晶体管或MOS管导通时间的改变,从而实现开关稳压电源输出的改变。这种方式能使电源的输出电压在工作条件变化时保持恒定,是利用微处理器的数字信号对模拟电路进行控制的一种非常有效的技术。脉冲宽度调制是利用微处理器的数字输出来对模拟电路进行控制的一种非常有效的技术,广泛应用在从测量、通信到功率控制与变换的许多领域中。(Pulse width modulation (PWM) is an analog control method, which modulates the bias of transistor base or MOS gate according to the change of load, so as to change the turn-on time of transistor or MOS and realize the change of output of switching regulated power supply. This method can keep the output voltage of the power supply constant when the working conditions change. It is a very effective technology to control the analog circuit by using the digital signal of the microprocessor. Pulse width modulation (PWM) is a very effective technology to control analog circuits by using the digital output of microprocessors. It is widely used in many fields, from measurement, communication to power control and conversion.)
    2020-06-22 16:20:02下载
    积分:1
  • Android -BLE蓝牙小DEMO
    一、ble简单介绍 BLE: Bluetooth Low Energy,即蓝牙低功耗,它是一种技术,从蓝牙4.0开始支持。蓝牙低功耗芯片有两种模式:单模和双模。 单模:只能执行低功耗协议栈,也就是只支持ble。双模:支持传统蓝牙以及ble的使用。 较传统蓝牙:传输速度更快,覆盖范围更广,安全性更高,延迟更短,耗电低等优点。 关键术语和概念:Gatt:(Generic Attribute Profile)—通用属性配置文件,用于在ble链路上发送和接收被称为“属性”的数据块。目前所有的ble应用都是基于GATT的。一个设备可以实现多个配置文件。 ble交互的桥梁是Service、Characteristic、Desciptor。Characteristic:可以理解为一个数据类型,它包括一个value和0至多个对此characteristic的描述(Descriptor)。 Descriptor:对Characterisctic的描述,如范围、单位等。 Service:Characteristic的集合。它可以包含多个Characteristic。 一个ble终端可以包含多个Service,一个Service可以包含多个Characteristic,一个Characteristic包含一个value和多个Descriptor,一个Descriptor包含一个value。其中Characteristic比较重要,用的比较多。这三部分都由UUID作为唯一标示符,以此区分。UUID(Universally Unique Identifier),含义是通用唯一识别码,它是在一定范围内唯一的机器生成的标识符。标准的UUID格式为:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx (8-4-4-4-12)。 ble中有四个角色:广播者(Braodcaster):广播发送者,是不可连接的设备。观察者(Observer):扫描广播,不能够启动连接。广播者和观察者不能建立连接。应用:温度传感器和温度显示器。外围(periphery):广播发送者,可连接的设备,在单一链路层作为从机。中央(central):扫描广播,启动连接,在单一或多链路层作为主机。 中央和外围可以进行配对、连接、数据通信。应用:手机和手表。一个中央可以同时连接多个周边,但是一个周边只能连接一个中央(但是我测试,周边可以连接多个中央设备,并且能正常通信)。二、Android 注意:Android 4.3(API 18)引入ble相关接口。相关类目录:frameworks/base/core/java/android/bluetooth/BluetoothGatt:中央使用和处理数据;BluetoothGattCallback:中央的回调。 BluetoothGattServer:周边提供数据; BluetoothGattServerCallback:周边的回调 BluetoothGattService:Gatt服务 BluetoothGattCharacteristic:Gatt特性 BluetoothGattDescriptor:Gatt描述2.1 中央设备 搜索ble设备 //搜索附近所有的外围设备 mBluetoothAdapter.startLeScan(mLeScanCallback); //搜索某些uuid的外围设备。 mBluetoothAdapter.startLeScan(uuid[] ,mLeScanCallback); 停止扫描 mBluetoothAdapter.stopLeScan(mLeScanCallback); 监听扫描结果。 mLeScanCallback = new BluetoothAdapter.LeScanCallback() { public void onLeScan(BluetoothDevice device, int rssi, byte[] scanRecord) { } }; device 搜索到的ble设备。rssi 信号强度scanRecord 远程设备广告记录的内容(蓝牙名称) 发起连接请求,获得中央。 mBluetoothGatt = device.connectGatt(mContext, false,mGattCallback);第二个参数: 如果为false,则直接立即连接。如果为true,则等待远程设备可用时(在范围内,。。)连接。并不是断开后重新连接。 第三个参数:连接回调private BluetoothGattCallback mGattCallback = new BluetoothGattCallback() {};BluetoothGattCallback 类中提供了许多回调,包括:连接状态改变、characteristic的read、write、change,mtu change等。根据需要实现即可。 连接成功后,发送 gatt服务发现请求。mBluetoothGatt.discoverServices().发现服务成功会失败都会回调onServicesDiscovered()函数。通过mBluetoothGatt.getServices()获取连接的ble设备所提供的服务列表,返回值类型为List。 //连接状态改变回调 onConnectionStateChange(BluetoothGatt gatt, int status, int newState){ if(newState == BluetoothProfile.STATE_CONNECTED){ //连接成功后,发送发现服务请求。 mBluetoothGatt.discoverServices(); } } //发现服务回调。 public void onServicesDiscovered(BluetoothGatt gatt, int status) { if(status == BluetoothGatt.GATT_SUCCESS){ //发现成功后,则可以通过下面方法获取service 列表。 mBluetoothGatt.getServices(); } } 获得Characteristic和Descriptor。 通过服务列表中的BluetoothGattService,可以获取到服务所包含的characteristic(getCharacteristics()返回值类型为List)。 通过BluetoothGattCharacteristic可以获取特征所包含的descriptor(getDescriptors()返回值类型是List)。 BluetoothGattService、BluetoothGattCharacteristic和BluetoothGattDescriptor三个类中都提供了一个方法getUuid(),通过该方法可以获取其对应的uuid,从而可以判断是否是自己需要的service、characteristic或者descriptor。 通过获取的特征值,可以进行下操作: 写入特性值 读取特性值 订阅特性值。写入特征值: characteristic.setValue(data.getBytes()); mBluetoothGatt.writeCharacteristic(characteristic); 要想成功写入特征值: 首先此characteristic属性满足BluetoothGattCharacteristic.PROPERTY_WRITY或BluetoothGattCharacteristic.PROPERTY_WRITY_NO_RESPONSE,如果其property都不包含这两个,写特征值writeCharacteristic()函数直接返回false,什么都不做处理(具体可以看BluetoothGatt源码)。其次此characteristic权限应满足BluetoothGattCharacteristic.PERMISSION_WRITE,否则onCharacteristicWrite()回调收到GATT_WRITE_NOT_PERMITTED回应。写特征值前可以设置写的类型setWriteType(),写类型有三种,如下: WRITE_TYPE_DEFAULT 默认类型,需要外围设备的确认,也就是需要外围设备的回应,这样才能继续发送写。WRITE_TYPE_NO_RESPONSE 设置该类型不需要外围设备的回应,可以继续写数据。加快传输速率。WRITE_TYPE_SIGNED 写特征携带认证签名,具体作用不太清楚。 外围设备收到中央写特征值的请求,会回调 onCharacteristicWriteRequest如果此次请求需要回应,则外围设备回应 mGattServer.sendResponse中央设备收到响应,回调onCharacteristicWrite(BluetoothGatt gatt,BluetoothGattCharacteristic characteristic, int status)读取特征值: mBluetoothGatt.readCharacteristic(characteristic);读特征值与写类似,也需要响应的权限和属性。该characteristic属性需包含PROPERTY_READ,否则直接返回false(具体可以看BluetoothGatt源码)。该characteristic权限应满足BluetoothGattCharacteristic.PERMISSION_READ,否则onCharacteristicRead()回调收到GATT_READ_NOT_PERMITTED回应。 外围设备接收到中央设备的读特征值请求,则会回调 onCharacteristicReadRequest()函数,外围设备应该回应此请求 sendResponse。中央设备收到响应回调onCharacteristicRead(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic, int status)订阅: //第二个参数:true则订阅该特征,false则取消订阅。mBluetoothGatt.setCharacteristicNotification(characteristic, true);当指定Characteristic值发生变化时,是否接收通知。当设为true,如果Characteristic发生变化时,会回调方法:onCharacteristicChanged(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic)通过参数characteristic,可获得getValue获得其中的内容。注意:虽然订阅了该特征,并且该特征属性也满足PROPERTY_NOTIFY,但是并没有收到特征值改变的回调。这是为什么呢?查看sdk中的demo,发现需要写一下Descriptor。这样就可以正常监听特征值的改变了。 //CLIENT_CHARACTERISTIC_CONFIG = "00002902-0000-1000-8000-00805f9b34fb" BluetoothGattDescriptor descriptor = characteristic.getDescriptor( UUID.fromString(SampleGattAttributes.CLIENT_CHARACTERISTIC_CONFIG)); descriptor.setValue(BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE); mBluetoothGatt.writeDescriptor(descriptor); 中央设备的其他一些方法readDescriptor(descriptor) 读取描述writeDescriptor(descriptor) 写描述readRemoteRssi() 读取连接设备的rssi。disconnect(); 断开bel连接。close(); 关闭中央设备。(不用时及时关闭,否则有的手机重连连不上。)2.2 外围设备获取/打开周边(外围) mGattServer = mBluetoothManager.openGattServer(mContext, callback); //其中callback是一个MyGattServerCallback(继承了BluetoothGattServerCallback)对象。 初始化描述、特性和服务。 //描述: new BluetoothGattDescriptor(UUID.fromString(DESC_UUID), descPermissions); //特性 : final int properties = BluetoothGattCharacteristic.PROPERTY_READ | BluetoothGattCharacteristic.PROPERTY_WRITE | BluetoothGattCharacteristic.PROPERTY_NOTIFY; final int permissions = BluetoothGattCharacteristic.PERMISSION_READ; | BluetoothGattCharacteristic.PERMISSION_WRITE; new BluetoothGattCharacteristic(UUID.fromString(CHAR_UUID), properties, permissions); gattChar.addDescriptor(gattDesc); property 表示属性。permission 表示权限。这两个都和权限相关。如果property未设置PROPERTY_READ,permission设置PERMISSION_READ,则中央设备readCharacteristic主动读取特征值方法返回false,此操作失败。而如果property设置PROPERTY_READ,permission未设置PERMISSION_READ,则中央设备readCharacteristic主动读取特征值方法返回true,此操作成功,外围设备发送响应,中央设备收到响应 GATT_READ_NOT_PERMITTED。所以说如果想要characteristic可读,则这两个都要设置。PROPERTY_WRITE和PERMISSION_WRITE也和上面类似。PROPERTY_NOTIFY 表示支持notification。 //服务: BluetoothGattService bs = new BluetoothGattService( UUID.fromString(SERV_UUID), BluetoothGattService.SERVICE_TYPE_PRIMARY); bs.addCharacteristic(gattChar); 第二个参数为service type,SERVICE_TYPE_PRIMARY 基础服务、主要服务。SERVICE_TYPE_SECONDARY 辅助服务(由初级服务包含在内)。BluetoothGattService 类中方法addService(bluetoothGattService),将辅助服务添加到主要服务中。getIncludeedServices() 获取包含的服务列表。getType() 获取服务的type。getUuid() 获取服务的UUID。添加服务mGattServer.addService(bs);设置广播数据开始广播这在android4.3没有提供,在android5.0才提供了设置广播数据,发送广告包等方法。我们开发是基于android4.3的,按理说我们是不可以作为外围设备的,不过我们framework以及底层都进行了修改,提供了这些方法,说以我们的android4.3设备可以作为外围。 mGattServer.startAdvertising();//开始广播mGattServer.stopAdvertising();//停止广播收到central扫描请求,回应扫描请求。这个不需要我们管理,此时会广播之前的设置的广播数据。收到central连接请求,建立连接。 连接成功后 外围可以断开连接。mGattServer.cancelConnection(device);响应central发起的gatt服务发现请求,回应服务信息。响应central发起的gatt特性发现请求,回应特性信息。响应central发起的gatt描述发现请求,回应描述信息。这三个不需要我们去操作,系统底层会处理。对central的读写做响应。回应特性值更新特性值。回应特征值:MyGattServerCallback extends BluetoothGattServerCallback.其中有几个常用的方法:onConnectionStateChange(BluetoothDevice device, int status, int newState)监听设备连接状态。  device远程设备  newStateble连接状态,只能为BluetoothProfile.STATE_CONNECTED和BluetoothProfile.STATE_DISCONNECTED。 onCharacteristicReadRequest(BluetoothDevice device, int requestId, int offset,BluetoothGattCharacteristic characteristic)监听中心设备读Characteristic的请求,  requestId 请求的标识。  offset 特性值偏移量。 Characteristic 要读的特性。此方法要求作出响应。mGattServer.sendResponse(device, requestId,BluetoothGatt.GATT_SUCCESS, offset, null); 最后一个参数可以设置传的数据,byte[]类型的。 onCharacteristicWriteRequest(BluetoothDevice device, int requestId, BluetoothGattCharacteristic characteristic,boolean preparedWrite, boolean responseNeeded, int offset, byte[] value)监听中心设备写Characteristic的请求, preparedWrite true则写操作必须排队等待稍后执行。 responseNeeded 是否需要响应。 value 写的数据。需要响应则必须sendResponse.更新特征值:外围设备向中心设备不能发送数据,必须通过notify 或者indicate的方式,andorid只发现notify接口。characteristic.setValue(res.getBytes());mGattServer.notifyCharacteristicChanged(device,characteristic, false);最后一个参数表示是否需要客户端确认。
    2019-04-14下载
    积分:1
  • ListWithMailMessages
    List With Mail Messages for Andriod.
    2013-11-06 14:46:42下载
    积分:1
  • 基于stm32的室内环境监测系统设计及实现
    用STM32f103zet6单片机做的室内环境监测系统,用到了LCD显示屏,光敏传感器,火焰传感器,红外遥控,烟雾传感器,高感度声音传感器,DHT11温湿度传感器等多个传感器模块综合,
    2020-05-26下载
    积分:1
  • Android 定义了两种常用的ProgressDialog进度对话框源码
    本源码主要是演示在Android中使用ProgressDialog,定义了两种常用的ProgressDialog进度对话框,一种是长形进度条,这是最早时候的进度条,有点像windows 7风格,另外上一种是圆形的进度条,这种进度条风格在目前的智能手机中已普遍应用,本源码中演示了这两种进度条的外观设计方法以及数据绑定形成进度指示的方法,由线程来控制进度,同时显示加载的百分比。下面是相关的代码段供参考:   // 创建ProgressDialog对象   m_pDialog = new ProgressDialog(Activity01.this);   // 设置进度条风格,风格为长形   m_pDialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);   // 设置ProgressDialog 标题   m_pDialog.setTitle("提示");   // 设置ProgressDialog 提示信息   m_pDialog.setMessage("这是一个长形对话框进度条");   // 设置ProgressDialog 标题图标   m_pDialog.setIcon(R.drawable.img2);   // 设置ProgressDialog 进度条进度   m_pDialog.setProgress(100);   // 设置ProgressDialog 的进度条是否不明确   m_pDialog.setIndeterminate(false);   // 设置ProgressDialog 是否可以按退回按键取消   m_pDialog.setCancelable(true);   // 让ProgressDialog显示   m_pDialog.show();   完整代码请下载源码。
    2022-01-25 19:52:21下载
    积分:1
  • Android 仿写Siri声波震动波形效果-彩色曲线
    Android彩色动态曲线生成例子,模拟实现了Siri声波震动效果,动态适时绘制并生成彩色的波形图,源代码中涉及到ios9之前版本及ios9上的两种效果。SiriWaveDemo是仿ios9之前的效果,SiriWaveView.java,另外是仿ios9版本的曲线波形效果,主文件是SiriWaveViewNine.java。截图演示的是IOS9版本的效果。
    2023-01-14 08:00:04下载
    积分:1
  • 支付宝移动接口实例(android版)源码下载
    android 支付宝移动版接口实例,最低支持版本 android 2.2,也就是几乎所有版本都支持了
    2015-03-12下载
    积分:1
  • 696518资源总数
  • 106164会员总数
  • 18今日下载