-
DIY-demokit
google adk DIY demokit开发应用程序源码,用于android adk开发(google adk DIY demokit development application source code, developed for android adk
)
- 2012-01-07 16:37:29下载
- 积分:1
-
android-mqtt-example
说明: 安卓通过mqtt协议通信的例程,转载github(Android mqtt communication routine)
- 2019-02-17 08:46:19下载
- 积分:1
-
android wifi信息扫描和rssi值检测 实例源码下载
android wifi信息扫描和rssi值检测 实例源码下载
- 2014-08-26下载
- 积分:1
-
游戏引擎jar包
游戏引擎jar包
- 2013-12-24下载
- 积分:1
-
brasil
Smali source code for HTV Box app.
- 2019-03-24 08:42:36下载
- 积分:1
-
基于Android的无线点餐系统(服务器+客户端+数据库)
基于Android的无线点餐系统(服务器+客户端+数据库)
基于Android的无线点餐系统(服务器+客户端+数据库)
基于Android的无线点餐系统(服务器+客户端+数据库)
基于Android的无线点餐系统(服务器+客户端+数据库)
基于Android的无线点餐系统(服务器+客户端+数据库)
- 2022-01-27 09:16:36下载
- 积分:1
-
MyGatt
BLE开发所需要的知识,通过官方demo,我们会发现很多service,点击service后,每个service下面是Characteristic,每个service和Characteristic都对应一个唯一的UUID。所以,在做BLE时候,首先你应该找出你的蓝牙外围设备uuid,不然会很头疼,这个UUID也可能是硬件给你的,也可以你自己试出来,当然自己试出来是个很烦的过程。自己试的方法就是根据demo,加上一份读写的协议,然后,排着点击,显示出来的蓝牙列表进行测试,看是否和协议对应。另外,BluetoothLeService类不用做太多的更改。(BLE develops the knowledge we need. Through official demo, we will find many service. After clicking service, every service is Characteristic, each service and Characteristic correspond to a unique UUID. So, when making BLE, first you should find out your Bluetooth peripheral device UUID, otherwise it will be very headache. This UUID may also be hardware for you, or you can try it out yourself, of course, trying out it yourself is a very boring process. The way to do it is to add a read and write protocol based on demo,then test the Bluetooth list displayed by clicking on it to see if it corresponds to the protocol. In addition, the BluetoothLeService class does not have to make too many changes.)
- 2018-02-07 11:55:52下载
- 积分:1
-
busybox
busybox 按照在android模拟器上可以查看模拟器的ip地址(busybox in accordance with the android emulator to see the ip address of the simulator)
- 2011-06-10 11:05:15下载
- 积分:1
-
Android 手势监听和图片放大缩小功能实例
Android 手势监听和图片放大缩小功能实例,安卓手机系统控制实例。关键代码分享如下:
ImageView myImageView = (ImageView) v;
switch (event.getAction() & MotionEvent.ACTION_MASK) {
// 设置拖拉模式
case MotionEvent.ACTION_DOWN:
matrix.set(myImageView.getImageMatrix());
savedMatrix.set(matrix);
start.set(event.getX(), event.getY());
mode = DRAG;
break;
case MotionEvent.ACTION_UP:
case MotionEvent.ACTION_POINTER_UP:
mode = NONE;
break;
case MotionEvent.ACTION_POINTER_DOWN:
oldDist = spacing(event);
if (oldDist > 10f) {
savedMatrix.set(matrix);
midPoint(mid, event);
mode = ZOOM;
}
// 若为DRAG模式,则点击移动图片
case MotionEvent.ACTION_MOVE:
if (mode == DRAG) {
matrix.set(savedMatrix);
matrix.postTranslate(event.getX() - start.x, event.getY()
- start.y);
} // 若为ZOOM模式,则点击触摸缩放
else if (mode == ZOOM) {
float newDist = spacing(event);
if (newDist > 10f) {
matrix.set(savedMatrix);
float scale = newDist / oldDist;
// 设置缩放比例和图片的中点位置
matrix.post
- 2022-04-20 06:24:10下载
- 积分:1
-
Android应用源码之androidGPS及WIFI基站定位坐标源码.rar
【实例简介】
- 2021-09-07 00:31:13下载
- 积分:1