-
Android滑动式菜单
实现类似 Facebook 、Path 2.0 、网易客户端类似的滑动式菜单的组件
- 2013-11-21下载
- 积分:1
-
BMI
说明: 运行与android1.5以上的android程序,基础入门实例,用eclipse开发环境,对初学android编程参考很有帮助。(Android running over with android1.5 procedures, basic entry instance, with the eclipse development environment, android programming reference helpful for beginners.)
- 2011-04-15 23:04:31下载
- 积分:1
-
机器人聊天
基于android studio平台的实现图灵机器人语音聊天
- 2022-06-19 16:54:48下载
- 积分:1
-
[安卓开源]安卓记账本毕业设计项目源码
[安卓开源]安卓记账本毕业设计项目源码 仅供参考
- 2022-06-28 19:11:49下载
- 积分:1
-
智能家居系统源码
应用背景智能家居让用户以更方便的手段来管理家庭设备,比如,通过触摸屏、手持遥控器、电话、互联网来控制家用设备,更可以执行情景操作,使多个设备形成联动;另一方面,智能家居内的各种设备相互间可以通讯,不需要用户指挥也能根据不同的状态互动运行,从而给用户带来最大程度的方便、高效、安全与舒适。所谓智能家居时代就是物联网进入家庭的时代。它不仅指那些手机、平板电脑、大小家电、计算机、私家车,还应该包括吃喝拉撒睡、安全、健康、交友、甚至家具等家中几乎所有的物品和生活。其目的是让人们的家庭生活更舒适、更简单、更方便、更快乐。关键技术智能家居系统源码比较完整,而且功能也很强大,应用可以实现了蓝牙的链接,还包括PDA端部分,以及和智能终端部分,很好地实现了一套设计通信,以及
- 2022-03-05 11:07:52下载
- 积分:1
-
安卓手机与pc间文件传输
安卓手机与pc间文件传输,简单的小软件,
- 2022-05-07 10:43:44下载
- 积分:1
-
基于安卓的用药记录项目
本项目是一套基于安卓的用药记录项目。是为了方便记录家庭中已经购买的药品,防止医院看病时开据重复的药品而开发的。生活中我们可能记不住家里有多少药,从而在医院看病时又开据了相同的药品而不自知,而之前开据的药品由于遗忘而过期无法使用,为了防止这样的浪费,我开发了这款应用,使大家在使用过程中可以方便快捷的搜索,添加家庭中已经有的药品,防止过度医疗而造成的不必要的浪费。开源项目 项目地址:http://git.oschina.net/lastcore/Medicine_Record/tree/master 涉及模块&技术 Sqlite数据库的创建以及与ListView的结合 内嵌图标及功能的自定义EditText 数据库的增删改查 Notification的使用 bean与sqlite的结合使用 ...
- 2022-01-25 14:16:54下载
- 积分:1
-
推送源代码
这是一个推送的android源码 ,可以在android手机上面实现推送的服务,方便大家在外面直接看到推送的各种消息,方便大家在外面直接看到推送的各种消息,方便大家在外面直接看到推送的各种消息
- 2022-01-22 12:42: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
-
Android 制作超炫的汽车仪表盘动画效果
Android 制作超炫、超逼真的汽车仪表盘动画效果,为了更好的演示效果,仪表盘在静态下,添加了一个滑动控制的按钮,当用户拖动该滑块向右拖动,仪表盘的指针和标尺会变色指向用户自定义的进度,并且适时显示时速状态,挺酷的效果。
这个仪表盘可以当作真正 的仪表盘,也可用来制作安卓手机个性化的Loading进度条效果,想一想,就觉得很酷哦。
- 2023-02-18 05:25:03下载
- 积分:1