登录
首页 » Java » Android应用源码可以按音乐视频图片分类浏览的安卓文件浏览器

Android应用源码可以按音乐视频图片分类浏览的安卓文件浏览器

于 2015-04-07 发布
0 163
下载积分: 1 下载次数: 0

代码说明:

Android应用源码可以按音乐视频图片分类浏览的安卓文件浏览器

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • [Java程序设计教程](源码+教案+参考答案)
    【实例简介】 书名《Java程序设计教程》 书号:978-7-302-18214-6 附件中是:电子教案、实例源文件、思考练习参考答案
    2021-08-06 00:30:58下载
    积分:1
  • Android 图形图表 示例源码
    Android 图形图表 示例源码
    2013-10-15下载
    积分:1
  • android 录制视频 并实时上传至服务器 在线观看 附完整源码下载
    用android 摄像头实时监控,并上传至服务器 实例下载,仅供学习交流使用
    2013-08-15下载
    积分:1
  • 27-白光T12电烙铁控制板.rar
    27-白光T12电烙铁控制板.rar
    2019-08-21下载
    积分:1
  • android 仿qq侧滑菜单 实例源码下载
    仿照qq 5.0 侧滑效果,很棒
    2015-01-28下载
    积分:1
  • 下拉列表Spinner入门级示例代码
    非常入门级的示例,适合新手
    2015-04-25下载
    积分:1
  • android 下载远程网络文件 示例源码
    android 下载远程网络文件 示例源码
    2014-09-04下载
    积分:1
  • android 实现圆形菜单
    private void computeCoordinates() {  BigStone stone;  BigStone menus;  for (int index = 0; index < STONE_COUNT; index ) {   stone = mStones[index];   stone.x = mPointX      (float) (mRadius * Math.cos(stone.angle * Math.PI / 180));   stone.y = mPointY      (float) (mRadius * Math.sin(stone.angle * Math.PI / 180));  }  if (flag == 0) {   for (int i = 0; i < MENUS; i ) {     menus = mMenus[i];     switch (i) {    case 0:     menus.x = 300 * 1.8f;     menus.y = 50;     break;    case 1:     menus.x = 300 * 1.8f 100;     menus.y = 50;     break;    case 2:     menus.x = 300 * 1.8f 200;     menus.y = 50;     break;    case 3:     menus.x = 300 * 1.8f;     menus.y = 150;     break;    case 4:     menus.x = 300 * 1.8f 10 100;     menus.y = 250;     break;     }    }  } }
    2014-06-22下载
    积分:1
  • android 简化数据库操作 例子源码
    android 简化数据库操作 例子源码
    2014-11-11下载
    积分:1
  • android 异步 执行 任务 例子 附讲解
    Rules::The AsyncTask instance must be created in UI thread. .execute must be invoked on the UI thread.Never call  objMyTask.onPreExecute(), objMyTask.doInBackground(), objMyTask.onProgressUpdate(),  objMyTask.onPostExecute manually.The AsyncTask can be executed only once (an exception will be thrown if a second execution is attempted.)AsyncTask have Four Main Method... onPreExecute()  doInBackground() onProgressUpdate() onPostExecute()  onPreExecute-This method is called first when you start AsyncTask using objAsync.execute().And mostly this method is use for initializing dialog(ProgressDialog,CustomDialog) and showing. doInBackground-The main purpose of AsyncTask is accomplished by this method.Any non-UI thread process is running in this method.Such as Rss Feed Reader,Image and video Uploading and Downloading.You cant handle your View in this method.Because this method is non-UI thread.While any background process is running if you want to handle UI therea are  onProgressUpdate method. after completion of process this method send result to OnPostExecute. onProgressUpdate-While backgrounding task is running ,you can handle your UI using this method .Such as status of downloading or uploading task.and this method is called from  doInBackground.Using publishProgress() you can call onProgressUpdate method to update UI while process is running. onPostExecute -This method is called after the background computation finishes.The result of background process in passed in this method as parameters.And now you can dismiss progress dialog ,to indicate that background task is completed. You can cancel AsyncTask using objAsyncTask.cancel().then you just check in doInBackground, if (isCancelled()) { break; } else {        //continue... } See this Image For more Clear.
    2013-07-05下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载