-
android 图片高斯模糊 实例源码下载
android 图片高斯模糊 实例源码下载
- 2014-12-05下载
- 积分:1
-
Android 仿微信聊天气泡及添加表情功能
Android 仿微信添加表情功能,同时还实现了微信聊天界面的气泡消息功能,聊天消息气泡模拟的十分相似,关于气泡的生成,请参考源代码中的MainActivity.java文件。关于表情生成功能,是在聊天界面使用正则表达式,用来判断消息内是否有表情,对spanableString进行正则判断,如果符合要求,则以表情图片代替,生成24个表情,通过传入的正则表达式来生成一个pattern。重点参考ChatMsgEntity.java、ChatMsgViewAdapter.java、Expressions.java文件。
- 2022-05-27 07:19:31下载
- 积分:1
-
集成正则匹配的EditText
自定义EditText,集成了QQ、手机号、邮箱、数字、网址、中文正则表达式验证
- 2022-09-08 17:00:04下载
- 积分:1
-
(图片+文字显示)ListView
(图片+文字显示)ListView
- 2015-01-27下载
- 积分:1
-
文件夹管理器
基于Android的文件夹管理器,可以实现基本的文件夹管理器的功能,识别文件类型,文件描述,管理手机上文件的增删改查复制新建等基本功能,界面也很算很炫吧,可以根据文件的类型匹配系统中的应用来操作该文件。基本能满足日常的需要吧。
- 2023-08-17 18:45:04下载
- 积分:1
-
EX04_09
这个程序实现了 spinner 动态添加和删除(This program implements the spinner dynamically add and remove)
- 2010-11-30 12:31:52下载
- 积分:1
-
H264Android
android H264编解码源程序,包含本地代码!(android H264 codec source code contains the local code!)
- 2013-04-03 21:10:24下载
- 积分:1
-
Android_Homework2_peter
此源码为android下一个关于相关控件的例子,适合初学者学习(this is a source about android which is fitable to the beginner)
- 2011-12-05 10:18:30下载
- 积分: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
-
基于安卓的用药记录项目
本项目是一套基于安卓的用药记录项目。是为了方便记录家庭中已经购买的药品,防止医院看病时开据重复的药品而开发的。生活中我们可能记不住家里有多少药,从而在医院看病时又开据了相同的药品而不自知,而之前开据的药品由于遗忘而过期无法使用,为了防止这样的浪费,我开发了这款应用,使大家在使用过程中可以方便快捷的搜索,添加家庭中已经有的药品,防止过度医疗而造成的不必要的浪费。开源项目 项目地址:http://git.oschina.net/lastcore/Medicine_Record/tree/master 涉及模块&技术 Sqlite数据库的创建以及与ListView的结合 内嵌图标及功能的自定义EditText 数据库的增删改查 Notification的使用 bean与sqlite的结合使用 ...
- 2022-01-25 14:16:54下载
- 积分:1