-
安卓医院预约系统+ 服务端(不含sql脚本)
这例子子就是安卓医院预约系统 加 服务端,可以用来大家学习安卓的开发的一个方向本项目是一个简单的医院挂号项目源码,实现了病人在安卓手机上登录、注册、挂号、查看医生信息等功能。实现原理是app端与web服务端做交互,然后web服务端再去调用mysql数据库里面的内容,维护mysql数据内容的时候直接在web服务端进行维护本项目暂时没有数据库,只有j2ee服务端源码和安卓客户端源码,所以只能给大家截两个登录注册的图,如果想看其他界面效果的话可以自己根据服务端srccomhospital下的model层里面的字段建表,我看了一下工程量也不大,就四个表,几个字段。有mysql或者mssql基础的人真想弄的话半小时内肯定可以把表建起来。时间有限我就不给大家弄数据库这一块了,感兴趣的朋友可以自己下载看一下。
- 2020-12-03下载
- 积分:1
-
android 热键插拔例子源码
Android的热插拔监听源代码,可以用来监听耳机之类的热插拔事件发生
- 2014-09-25下载
- 积分:1
-
android textview 展示图片例子
android textview 展示图片例子
- 2014-09-16下载
- 积分:1
-
[Java程序设计教程](源码+教案+参考答案)
【实例简介】
书名《Java程序设计教程》
书号:978-7-302-18214-6
附件中是:电子教案、实例源文件、思考练习参考答案
- 2021-08-06 00:30:58下载
- 积分:1
-
android 网络图片下载 示例源码
很好的下载图片的工具类,特别是结合listview一起用,废话不多说,直接上源码
- 2014-03-26下载
- 积分:1
-
java--博客简单评论demo
简单博客评论功能,含登录,注册,增删改查等基础功能;样式有点low,就不截图发布了 MyEclipse项目,mysql数据库:root,密码123 登录注册,博客评论删除等功能项目:一个实现了增删改查技术的破烂微博技术:jsp servlet mysql项目实现: 1.注册,登录 2.主页面显示所有微博信息(查) 3.发微博(增) 4.点赞,取消点赞(改) 5.删除 6.建表,连接数据库 7.好友关系(附加,选择完成)前端页面提供好了,功能我大致已经完成,就是一些增删改查的功能。
- 2019-04-29下载
- 积分:1
-
android 播放mjepg视频流代码
android 播放mjepg视频流代码
- 2015-03-17下载
- 积分:1
-
Wi-fi Director
Wi-fi Director
- 2013-06-02下载
- 积分: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安卓视频录制摄像拍摄源码(测试可用)
视频录制与拍摄
- 2013-11-15下载
- 积分:1