-
ViewPagerTD
android viewpager的左右无限循环、自动滑动(about android viewpager infinite loop, automatic sliding)
- 2013-11-27 16:50:01下载
- 积分:1
-
安卓 文件管理器
资源描述此项目是安卓系统下的文件管理器,主要适用于智能电视。
- 2022-03-25 09:17:44下载
- 积分:1
-
视频录制 播放 上传服务器
视频录制 播放 上传服务器
- 2014-03-28下载
- 积分:1
-
DetectiveFace
基于百度媒体云人脸识别安卓版啊啊啊啊啊啊啊啊啊啊啊啊啊(Based on baidu media cloud face recognition android version)
- 2019-01-14 16:06:19下载
- 积分:1
-
indicator android tab切换例子源码(支持Fragment)
indicator android tab切换例子源码(支持Fragment)
- 2015-04-22下载
- 积分:1
-
商城android端+服务端
从别的地方下载的一个商城客户端+服务端的源码,代码很详细可以运行。
- 2022-02-28 23:43:16下载
- 积分:1
-
android 高德地图最新API
搞的地图最新1.4.2 Demo1.将MapApi.jar放到工程libs目录下;如果需要使用矢量地图,将libminimapv320.so放到libs下的armeabi目录下。2.在工程Build Path>Configure Build Path…>libraries 中选择“Add Externel JARs…”,选定MapApi.jar,点击OK,这样就可以将高德地图Android API 库文件引入。然后在工程Build Path>Configure Build Path…>Order and Export 中将引入的库文件MapApi.jar 选中(在Android2.2及以前的版本中必须选中,否则会有问题),点击OK。3.如果遇到问题,可以上问答社区http://api.amap.com/qa/。
- 2013-05-30下载
- 积分:1
-
andriod
有关于安卓的景物实例,主要介绍旅游景点的浏览页面。(There are examples on the scene Andrews)
- 2020-12-27 16:59:03下载
- 积分: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
-
app首次使用向导
应用背景对有着操作复杂或者有固定操作顺序的app首次打开的一个使用指导,有需要的可以借鉴一下关键技术采用FramLayout实现蒙层效果,以及在蒙层效果上实现的文字向导,和文字点击事件
- 2022-03-18 00:47:32下载
- 积分:1