-
xmpp android源码
android 通过xmpp编写的一个及时通讯小实例 ,与大家共同交流
- 2022-01-22 01:51:07下载
- 积分:1
-
android点赞效果
android点赞效果,点赞 1 效果,自下而上 弹出 1提示,不错
- 2014-02-27下载
- 积分:1
-
Android
android应用开发详解,包含详细的各大组件使用方法,并带有各个章节的源码。(android application development Elaborates and the source)
- 2013-06-25 11:25:23下载
- 积分:1
-
android 自定义tab控件源码
android 自定义tab控件源码
- 2014-09-15下载
- 积分:1
-
whg_Syllabus
android 仿超级课程表,实现本地数据库保存课表内容,到了指定时间提示上课(Android super curriculum, for local saving schedule, tips to the specified time for class)
- 2021-01-07 12:38:52下载
- 积分:1
-
Android中的网络数据下载及JSON的操作
Android中的网络数据下载及JSON的操作,包括了9个Android JSON方面操作的例子:
GetAPictureFromInternet
GetNewsInJSONFromInternet
MultipleThreadContinuableDownloader 多线程下载
ServerForJSON
ServerForMultipleThreadDownloader
ServerForPicture
ServerForWebCodeViewer
ServerForXML 文件服务
WebCodeViewer 获取网页源代码
- 2022-07-08 06:15:22下载
- 积分:1
-
手机小助手
这是一款自行开发的手机小助手,除了通讯录功能比较鸡肋意外,其他的都很实用,写的工程包含了许多知识点~
- 2023-06-25 05:40:06下载
- 积分:1
-
android4.0以上90%控件的使用,一个Dome告诉你
Android4.0以上的大部分ui控件案例,通过一个程序,让你清楚android90%以上控件的基本用法
- 2022-02-11 12:48:00下载
- 积分:1
-
疯狂Android讲义源码
《疯狂Android讲义》一书全面地介绍了Android应用开发的相关知识。这里提供的是疯狂安卓讲义源码,是疯狂Android讲义实例代码。全书一共包括近百个实例,这些示范性的实例既可帮读者更好地理解各知识点在实际开发中的应用,也可供读者在实际开发时作为参考。
- 2022-08-07 19:19:54下载
- 积分: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