-
模仿天天动听5可联网下载歌词的音乐播放器
本项目是一个高仿天天动听5的android版音乐播放器,界面华丽功能完整,除了本地播放器应有的那些功能另外还添加了程序内直接在线匹配下载歌词(联网可用,数据源来自百度音乐盒)、皮肤背景更换、摇一摇换歌等功能,本项目是一个综合型的项目,涉及到slidemenu、pinyin4j、lrc、service、fragment、aidl、sqlite等知识,项目有比较完整的注释项目没有广告质量较高
- 2023-05-24 17:30:04下载
- 积分:1
-
基于Matlab的多频外差模拟程序
本程序是记忆李中伟博士的博士论文来实现;Matlab仿真代码;测试通过;
- 2019-04-16下载
- 积分:1
-
TVINFOR4.04
allwinner a10 AV-IN驱动及android DEMO
- 2013-10-22 15:42:24下载
- 积分:1
-
Android 自动启动服务的示例
Android 自动启动服务,也可以手动启动或停止指定的服务,这只是一个例子,演示在android环境下,如何在后台自动运行Service。
public void onDestroy() {//重写的onDestroy方法
myThread.flag = false;//停止线程运行
super.onDestroy();
}
@Override
public void onStart(Intent intent, int startId) {//重写onStart方法
myThread = new MyThread() ;//初始化线程
myThread.start();//启动线程
super.onStart(intent, startId);
}
class MyThread extends Thread{//线程类
boolean flag = true;//循环标志位
int c = 0;//发送的消息
@Override
public void run() {
while(flag){
Intent i = new Intent("wyf.ytl.myThread");//创建Intent
i.putExtra("myThread", c);//放入数据
sendBroadcast(i);//发送广播
c++;
try{
Thread.sleep(1000);//睡眠指定毫秒数
}catch(Exception e){//捕获异常
e.printStackTrace();//打印异常
}
}
}
};
- 2023-04-08 03:05:04下载
- 积分:1
-
android ebook 源码
android ebook 源码
- 2014-06-17下载
- 积分:1
-
安卓系统通过 SOAP web 服务连接
SOAP 是交换结构化的信息在计算机网络中的 Web 服务执行的协议规范。它依赖于可扩展标记语言 (XML) 为其的邮件格式,并通常依赖于其他应用层协议,最明显的是超文本传输协议 (HTTP) 和简单邮件传输协议 (SMTP) 邮件谈判和传输。
KSOAP 库是优雅、 重量轻、 高效的 SOAP 客户端库。图书馆是开放源码的易于使用,和它可以为您节省从编写一个自定义的解析器的麻烦。它是目前可用的更多的信任 SOAP 库之一,它经常更新,这是一个好的迹象,对于任何开放源码项目。
- 2022-07-10 06:34:59下载
- 积分:1
-
SslCertificate_DNameTest
Test Target Class Source Code for Andriod.
- 2013-12-06 12:19:32下载
- 积分:1
-
android 获取某一网址上的图片
本程序是从网上下载图片,由于此操作是比较耗时的操作,为了防止UI主线程的阻塞,此源码将这个操作放在了AsyncTask异步任务中去执行。
- 2022-02-12 10:53:55下载
- 积分:1
-
疯狂Android讲义(第2版)》.(李刚)源代码
疯狂Android讲义(第2版)》.(李刚)源代码
- 2015-03-15下载
- 积分:1
-
finalassignment
android 移动应用系统设计
1、最后提交两部分内容
a. 对一个功能的实现+实验报告(该项作为平时作业成绩)
- 可以选择上课中所演示的任意功能,截图完成实验报告
- 需要提交程序 + 3-5页的实验报告
b. 从以下网址下载一个app源码,或者其它地方的源码,对代码进行详细解析(该项作为期末课程考核成绩)
- 推荐下载网址为:http://www.devstore.cn/code/list/pn1-or0.html
- 需要提交下载的源码,和对该源码实现的分析报告,不少于8页
2、将所有内容按下面两个目录进行存放,打包以“学号+姓名” 命名,上传到作业ftp
- 实验
- 课程综合(android mobile application system design 1, the final submission of two parts a test report achieve+ a function (such as the usual job performance)- You can any function demonstrated in class, theme complete test report- to be submitted program+ Experimental report b 3-5 pages downloaded the following URL an app source code, or elsewhere source, detailed analysis of the code (such as the end of course examination results)- Recommended download site at: http: //www.devstore .cn/code/list/pn1-or0.html- to submit to download the source code, and analysis of the source code to achieve, at least 8 2, all the content stored in the following two directories, packed to " learn No.+ name " name, upload to job ftp- Experiment- Integrated Course)
- 2015-11-17 10:36:12下载
- 积分:1