-
Plane_war_game
基于android的飞机大战游戏,不过不能触屏控制,只能通过DAPD板控制上下左右,对初学者有用(Plane war game based on android, but can t touch screen control, only through DAPD board to control the up and down or so, useful for beginners)
- 2013-12-07 21:49:44下载
- 积分:1
-
安卓开发的环境搭建
搭建安卓环境所需要的基本包和文件。
- 2022-01-22 10:53:41下载
- 积分:1
-
安卓VPN源码
应用背景安卓VPN源码,因为手上没有VPN, 没有测试。有兴趣的可以下载来测试一下,有问题可以评论,一起改进。关键技术安卓VPN技术,应用广泛,值得研究。结合网上的资料,编写测试。
- 2023-06-21 11:30:02下载
- 积分:1
-
结合droidWall 网络防火墙源码
我本人自己开发的一个Demos,能够黑白名单App的wifi,3g流量变化.适合学习流量监控的同学。
- 2022-06-30 21:43:46下载
- 积分:1
-
发送和收到 sms 在安卓系统
你好有时我们想要发送短信或收到短信通过我们 android 的应用程序这是一个很好的来源
- 2022-02-20 22:46:59下载
- 积分:1
-
Android与.net交互例子源码下载(web service)
web service实现 android 与.net 交互
- 2015-03-30下载
- 积分:1
-
蓝牙实时语音对讲机源码,测试可用,可供android学习,及二次开发!
实时语音对讲机,在Android上测试可用,通过蓝牙2.4G频段收发数据,实时对讲效果好,可以直接使用,也可以根据项目需求,在蓝牙实时语音对讲机的基础上做二次开发,也可以供初学者入门
- 2023-07-14 05:15:04下载
- 积分:1
-
Android http连接库
Android 一个Http连接库,很好用,android-async-http开源框架可以是我们轻松的获取网络数据或者向服务器发送数据,使用起来也很简单
- 2023-07-10 04:55:03下载
- 积分:1
-
Activity生命周期实例
Activity生命周期实例
- 2014-02-20下载
- 积分: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