-
简单的popmenu
简单的popmenu
- 2015-08-29下载
- 积分:1
-
PlaneDemo
android游戏开发教学实例-飞机游戏,有助于初学者尽快熟悉android开发流程,思想。值得一看(android teaching game development examples- aircraft game, helping beginners to familiarize themselves with android development process, thinking. Worth)
- 2011-07-16 09:09:52下载
- 积分:1
-
Android项目源码高校的在线生活咨询平台
安卓校园生活应用,android studio源码,可直接运行(android school life,android studio code,can run by studio)
- 2018-04-10 21:12:47下载
- 积分:1
-
android 生成动态复杂表格
表格数据是纵横交叉的,也有规规矩矩的,有几种类型。利用LinearLayout和TableLayout实现了
- 2022-03-22 08:05:41下载
- 积分:1
-
84564
Android的传感器系统,精选android项目书籍,很好有参考资料。(The sensor system Android, select Android project books, very good reference material.)
- 2013-12-04 08:49:42下载
- 积分:1
-
Rtp2H264
h264 RTP包的解包、拼帧源码,适合android平台,实测可用。(H264 RTP packet unpacking, fight the frame source, suitable for the android platform, the measured available.)
- 2013-05-16 10:38: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
-
“动物饲养员”游戏源码
“动物饲养员”游戏是一个使用2D游戏引擎AndEngine开发的,好玩的入门级游戏。
- 2023-08-05 05:05:04下载
- 积分:1
-
android GroupActivity TabActivity(选项卡实例源码下载)
android GroupActivity TabActivity(选项卡实例源码下载)
- 2014-05-30下载
- 积分:1
-
Android 演示异步加载图片的实现 附源代码
Android 演示异步加载图片的实现 附源代码,这里主要是演示ListView的异步加载图片功能,异步加载一个view时,如果view里面有EditText,EditText在每次加载view都会触发焦点,这时候异步就会出错。可能我这样说不太清楚,但是如果试试就会发现这种情况。另外写了一个工具类,用于根据url读取图片返回流。
本例子的异步加载图片基本原理是:每读取好一个图片就更新,先一个loading加载,一旦有图片了就去掉loading,显示图片。
- 2023-06-19 21:35:04下载
- 积分:1