-
Android开源小说阅读器CoolReader源码
Android开源小说阅读器CoolReader源码
- 2015-04-06下载
- 积分:1
-
android 高仿网易新闻客户端主界面UI效果 示例源码(侧滑SlidingMenu+ViewPager+Fragment)
android 高仿网易新闻客户端主界面UI效果 示例源码(侧滑SlidingMenu+ViewPager+Fragment)
- 2013-10-23下载
- 积分:1
-
批量替换 android反编译之后 R.java文件中的数字(id对应的值) 实例源码下载
好多人反编译都遇到 反编译出来的 R.id.... 这些都变成了数字,这个程序就是批量替换这些数字为可读性更好的id,支持 UTF-8 GBK gb2312 ,没乱码,亲测通过
- 2014-05-26下载
- 积分:1
-
将PC电脑端的文件通过usb传到android手机中 示例源码下载(含android和pc端完整源码)
将PC电脑端的文件通过usb传到android手机中 示例源码下载(含android和pc端完整源码)
- 2014-06-23下载
- 积分:1
-
MySQL Workbench 6.3 CE 汉化文件v0.3
鉴于之前的汉化文件使用后报错,遂用两个小时写了个自动化脚本来汉化文件,亲测可用。时间仓促,若有不足,请在下方教程链接中提意见MySQL Workbench汉化文件,可根据教程完成汉化教程链接:https://blog.csdn.net/weixin_40423737/article/details/80193680
- 2020-05-26下载
- 积分:1
-
android 仿qq侧滑菜单 实例源码下载
仿照qq 5.0 侧滑效果,很棒
- 2015-01-28下载
- 积分:1
-
RTKlib关于高精度GPS动态定位函数与处理过程整理
该资源基于RTKLIB,整理了相对定位中调用的函数及公式,从读文件到解算结果的步骤,包括文件读取、计算基站位置、卫星位置、双差、卡尔曼滤波、模糊度估计等的原理与公式。
- 2020-05-26下载
- 积分:1
-
android 微信分享插件 源码下载
调用phoneGap实现分享图片文字和视频等功能
- 2014-12-31下载
- 积分:1
-
android 仿QQ的登录界面源码
android 仿QQ的登录界面源码
- 2015-06-16下载
- 积分: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