-
DAY3_1SharePrefrence_R_and_W
教你使用android sharePrefrence来保存一些常用数据。(Teach you how to use the android sharePrefrence to preserve some of the common data.)
- 2015-08-01 15:58:19下载
- 积分:1
-
android_SNS_jqm
用jquery mobile开发的Android移动社区客户端(Android mobile community client with Jquery mobile)
- 2020-10-20 14:07:24下载
- 积分:1
-
Android执行远程安装APK功能
Android执行远程安装APK命令,远程安装APK,代码中已经定义了一个远程APK的路径,在Android环境下,执行安装命令,自动下载远程APK并执行安装。HttpResponse httpResponse = new DefaultHttpClient()
.execute(httpGet);
if (httpResponse.getStatusLine().getStatusCode() == 200)
{
InputStream is = httpResponse.getEntity().getContent();
FileOutputStream fos = new FileOutputStream(downloadPath
+ "/integration.apk");
byte[] buffer = new byte[8192];
int count = 0;
while ((count = is.read(buffer)) != -1)
{
fos.write(buffer, 0, count);
}
fos.close();
is.close();
installApk(downloadPath+ "/integration.apk");
}
- 2022-02-04 20:28:08下载
- 积分:1
-
AndroidService
Android的服务Service,两种不同的实现方法
service概念及生命周期,以及测试生命周期的工程(Android Service Service, two different concepts and implementations service life cycle, and test the project life cycle)
- 2011-05-08 08:35:01下载
- 积分:1
-
android 将视频上传至服务器(汗服务器端源码)
android上传图片、视频、文件,服务端使用wcf接收android上传图片、视频、文件,服务端使用wcf接收
- 2014-10-24下载
- 积分:1
-
android 侧滑菜单例子源码下载
android 侧滑菜单例子源码下载
- 2015-05-14下载
- 积分:1
-
Android实现Windows风格的Dialog 实例源码下载
Android实现Windows风格的Dialog 实例源码下载
- 2014-08-21下载
- 积分:1
-
android下几种常用的dialog 对话框 用法与实例
android下几种常用的dialog 对话框
- 2013-03-25下载
- 积分:1
-
zzz
android 深度探索HAL与驱动开发源代码-drivers(android depth exploration of HAL and driver development source code-drivers)
- 2015-08-20 13:53:34下载
- 积分:1
-
Androidstudio例子
Androidstudio例子 Androi Androidstudio例子例子
- 2022-08-07 04:50:49下载
- 积分:1