-
MP3Player-editon1
曾经写的一个mp3播放器的源码,不过作为基本的学习只用而已。(an edition of mp3!)
- 2012-04-13 14:12:23下载
- 积分:1
-
foursquared
foursquared android 客户端源码,以前下载的,现在都不能下了,想看的童鞋们可以看看,代码写的没法说。(foursquared android client source code, previously downloaded, now can not come, and want to see the children s shoes can see, the code can not write that.)
- 2011-12-07 21:14:43下载
- 积分:1
-
Android定位
安卓手机自带的定位功能,安卓手机自带的定位功能,安卓手机自带的定位功能,安卓手机自带的定位功能,安卓手机自带的定位功能,安卓手机自带的定位功能,安卓手机自带的定位功能,安卓手机自带的定位功能,安卓手机自带的定位功能,安卓手机自带的定位功能,安卓手机自带的定位功能,安卓手机自带的定位功能,安卓手机自带的定位功能,安卓手机自带的定位功能,安卓手机自带的定位功能,安卓手机自带的定位功能,安卓手机自带的定位功能,安卓手机自带的定位功能,安卓手机自带的定位功能,安卓手机自带的定位功能,安卓手机自带的定位功能,安卓手机自带的定位功能,安卓手机自带的定位功能,安卓手机自带的定位功能,安卓手机自带的定位功能,
- 2022-06-16 01:29:59下载
- 积分:1
-
分组拖动顶上的自定义ExpandableListView
工程自定义ExpandableListView,实现了类似qq可扩展的ExpandableListView,保证父类的条目一直处在顶上不会消失的效果
- 2023-06-07 20:30:03下载
- 积分:1
-
MixedColor
测试反应速度的android游戏。c++语言源代码。(a android game which tests your reaction speed.
)
- 2020-09-15 09:17:57下载
- 积分:1
-
android自定义手电筒,带有通知栏
自己写的一个Android手电筒应用程序,带有常见的sos功能,同时支持通知栏消息提醒。
- 2023-01-26 06:20:03下载
- 积分:1
-
椭圆曲线加密
secp128r1,secp160k1,secp224k1 加密,椭圆曲线,它是演示椭圆曲线密码的一个例子。它可以生成私人和公共的代码。您可以验证您在此示例中的密钥。谢谢。
- 2022-04-09 00:36:23下载
- 积分:1
-
fishing-Daren-source-code
安卓 捕鱼达人源代码 喜欢的朋友可以自己下载(fishing Daren source code)
- 2021-01-06 23:08:53下载
- 积分:1
-
FFT 快速傅里叶变换C++实现
快速傅里叶变换C 实现
- 2020-12-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