-
websocket实现多人聊天
环境:jdk1.8、MyEclipse8.6、tomcat7.0.47、编译环境为1jdk1.6、tomcat运行环境为1.8
- 2022-06-26 13:48:22下载
- 积分:1
-
emwin例子源码
【实例简介】
- 2021-08-20 00:31:52下载
- 积分:1
-
图片二值化处理
通过jni调用C++代码实现的对图片进行二值化处理的一个源码
- 2022-03-21 20:27:12下载
- 积分:1
-
android 异步加载网络图片 例子 附完整源码
android 异步加载网络图片 例子 附完整源码
- 2013-07-04下载
- 积分:1
-
sdfsdfsdfsdfsdf
ASDFASDFASDFASDFASDFASDFASDFASDFASDFASDFASDFASDFASDFASDFASDFASDFASDFASDFASDFASDFASDFASDFASDFASDFASDFASDFASDFASDFASDFASDFASDFSSDFASDFASDFASDFASDFSSDFASDFASDFASDFASDFSSDFASDFASDFASDFASDFASDFASDFSSDFASDFFSDFASDFFSDFASDFASDFASDFASDFASDFASDFASDFASDFSSDFFSDFASDFASDFASDFASDFSSDFASDFASDFASDFSSDFFSDFFSDFASDFASDFASDFASDFASDFASDFSSDFFSDFFSDFDFASDFASDFASDFFSDFASDFASDFASDFFSDFFSDFFSDFDFFSDFFSDFDFDFADFASDFASDFASDFSADFSFSDFSDFSADFASDFSADFSDFSDFSDFSDFSADFASDFASDFFSDFSADFASDFFSDFSADFFSDFSADFFSDFSADFFSDFSADFSDFSDFDFFSDFDF
- 2023-03-12 01:15: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
-
android viewpager示例
资源描述 安卓(android)源码,代码可运行,当然要有安卓环境才可以,代码显示的是一个可以左右滑动的viewpager示例,可以动态增加页面,类似于一般安卓手机软件欢迎界面的一套教学图片的框架,多个页面通过滑动左右切换。
- 2023-04-14 07:00:03下载
- 积分:1
-
android 移动PathMenu 菜单 例子源码下载
pathmenu
- 2015-04-01下载
- 积分:1
-
OpenWnn Android输入法源代码
OpenWnn Android输入法源代码-OpenWnn Android source code input method
- 2023-08-25 21:50:05下载
- 积分:1
-
android 底部弹出类似ios菜单
仿ios的弹出菜单,从底部弹出附件中代码PS:还是要多看看android官方的设计指引,不盲目模仿IOS的UI风格!
- 2022-06-28 02:40:49下载
- 积分:1