-
ResolveInfoTest
Resolve Info Test for andriod.
- 2014-01-10 10:56:03下载
- 积分:1
-
android 3D相册 示例源码下载(有图有源码)
android 3D相册 示例源码下载(有图有源码)
- 2013-10-23下载
- 积分:1
-
android 通讯录应用 设计源码下载(含设计文档),毕业设计可参考
android 通讯录应用 设计源码下载(含设计文档),毕业设计可参考
- 2014-06-26下载
- 积分:1
-
WiFiDirectDemo
实现android手机之间wifi直连的基本功能,包括寻找邻居,建立连接,传输文件。(Achieve wifi direct connection between android phone basic functions, including the search for neighbors, establish a connection, transfer files.)
- 2016-03-28 21:07:37下载
- 积分:1
-
java 二维码生成,包括插入个性图标
应用背景各.种.网络当面付的自动售卖项目中.使.用.的.二.维.码.java api,已经完美插入个性图标~~接入方便,只.需.要.输.入qrcode的字.符.串.就.可.以.关键技术
生.成.自.定.义.个.性.图.案.的.二.维.码.过程api,完.美.接.入.无.需.要.第.三.方.jar包.方.便.各.位.大.猿.接.入.自.己.的.项.目....
- 2022-02-13 00:58:12下载
- 积分:1
-
Android 支持断点续传功能的下载demo源码
Android 支持断点续传功能的下载demo源码,并结合了数据库来实现,在download.db数据库下创建一个download_info表存储下载信息,利用Http协议进行多线程下载,从头开始的全文下载;1,从某字节开始的下载(bytes=27000-);2,从某字节开始到某字节结束的下载(bytes=27000-39000),针对 bytes=27000-39000 的请求,从27000开始写数据,客户端请求的是270000之后的字节(包括bytes下标索引为270000的字节),如果设设置了Content-Length,则客户端会自动进行多线程下载。如果不希望支持多线程,则不要设置这个参数。
// Content-Length: [文件的总大小] - [客户端请求的下载的文件块的开始字节]
断点开始
// 响应的格式是:
// Content-Range: bytes [文件块的开始字节]-[文件的总大小 - 1]/[文件的总大小]
- 2022-10-23 04:30:03下载
- 积分:1
-
Android Sensor 各种传感器的使用例子
本源码演示了Android Sensor 各种传感器的使用方法,比较基础的用法,例子中包括了方向传感器、磁场传感器、温度传感器、光传感器和压力传感器的各自调用用法等,相关代码如下:
public void onSensorChanged(SensorEvent event) {
float[] values = event.values;
StringBuffer sb = null;
int type = event.sensor.getType();
switch (type) {
case Sensor.TYPE_ORIENTATION:
sb = new StringBuffer();
sb.append("绕Z:" + values[0])
.append("
绕X:" + values[1])
.append("
绕X:" + values[2]);
ortationEdit.setText(sb.toString());
break;
case Sensor.TYPE_MAGNETIC_FIELD:
sb = new StringBuffer();
sb.append("X方向的角度:" + values[0])
.append("
Y方向的角度:" + values[1])
.append("
Z方向的角度:" + values[2]);
magneticEdit.setText(sb.toString());
break;
case Sensor.TYPE_TEMPERATURE:
sb = new StringBuffer();
sb.append("温度为:" + values[0]);
temeratureEdit.setText(sb.toString());
break;
case Sensor.TYPE_LIGHT:
sb = new StringBuffer();
sb.append("光强为:" + values[0]);
lightEdit.setText(sb.toString());
break;
case Sensor.TYPE_PRESSURE:
sb
- 2022-02-26 07:53:01下载
- 积分:1
-
android 一维码、二维码的生成与扫描 源码下载
二维码源码
- 2016-02-01下载
- 积分:1
-
LinkGame
能实现电脑端双人连连看游戏,里面已设置好关卡,只有在规定时间内通过游戏关卡才能进入下一关,否则游戏失败,同时进行倒计时。(It can realize the double-player continuous watching game on the computer side. The game has been set up a checkpoint. Only through the game checkpoint in the prescribed time can we enter the next level, otherwise the game will fail and the countdown will be made at the same time.)
- 2019-04-03 15:34:59下载
- 积分:1
-
pglduisj
这是一款Android平台下的仿苹果通信界面UI源码,目前只是来电界面,去电因为没法发送DTMF,没法实现拨号盘功能,所以去电界面没实现,另外具备免提切换按键功能,希望能给大家带来帮助。 (This is a Android platform imitation Apple communication UI interface source code, currently only incoming interface to electricity because can t send DTMF, can not realize dialing disk function, so to electrical interface is not achieved, it also possess the hands-free key function switching, hope can bring a help to everybody.)
- 2016-05-25 19:17:39下载
- 积分:1