thinking for MusicPlayer
Posted gentspy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thinking for MusicPlayer相关的知识,希望对你有一定的参考价值。
音乐播放器网络版的客户端:
客户端:
com.tarena.musicClient
activity 存放Activity
MainActiivty
onCreate(){
//加载音乐列表
new MusicBiz().execute();
}
biz 存放业务类
MusicBiz extends AsyncTask{
doInBackground(){
http json;
onPostExecute(){
更新UI;
}
}
}
entity 存放实体类
Music
Adapter 存放适配器
Service 存放service组件
util 存放工具类
HttpUtils{
HttpEntity send(method,utl,list){
发送HTTP请求
}
}
JSONParser{
List<Music>parse(JSONArray ary){
//解析
}
}
使用单线程轮循机制异步批量下载图片
以上是关于thinking for MusicPlayer的主要内容,如果未能解决你的问题,请参考以下文章