-
第三方App
电影天堂是电影天堂(网站版)的第三方客户端,一切资源都从该网站获取.
- 2016-05-22下载
- 积分:1
-
wifi语音对讲
实现局域网内语音对讲发送文字
- 2013-06-29下载
- 积分:1
-
安卓无线控温 实例源码(控制温度)
通过手机app遥控下位机进行温度的控制,手机可以读取温度值等的数据,并且可以自动发送指令,到达设定的温度后,手机可通过响铃或震动来提示用户。
- 2017-02-08下载
- 积分:1
-
安卓调用系统闹钟及获取所有软件信息例子 源码
安卓调用系统闹钟及获取所有软件信息例子 源码
- 2014-10-17下载
- 积分:1
-
android Pdf Reader pdf阅读器 例子源码下载
android Pdf Reader pdf阅读器 例子源码下载
- 2014-10-30下载
- 积分:1
-
android下Intent传递实例 附完整源码
Intent传递实例
- 2013-03-30下载
- 积分:1
-
android 热键插拔例子源码
Android的热插拔监听源代码,可以用来监听耳机之类的热插拔事件发生
- 2014-09-25下载
- 积分:1
-
Android用Intent实现Video 视频功能
Android用Intent实现Video 视频功能
- 2014-01-19下载
- 积分:1
-
微信公众号获取用户openId及用户信息
在开发微信公众号时,一旦用户关注了微信公众号,用户后续的操作已经跟用户的信息进行了绑定,那这些绑定的信息其它是通过OpenId进行的,每个用户关注不同的微信公众号时会产生唯一且不同的OpenId, OpenId相应于用户唯一主键
- 2018-03-07下载
- 积分: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