-
android 微信分享示例代码
不错的demo,大家可以借鉴一下
- 2015-04-21下载
- 积分:1
-
07208381Mms
android 开发平台上的彩信开发源码,用于MMS开发(MMS android open source development platform for the development of MMS)
- 2016-03-21 17:30:48下载
- 积分:1
-
android activity 声明周期测试实例
activity声明周期测试
- 2013-04-11下载
- 积分:1
-
视频拍摄压缩
视频拍摄,H264编码压缩,只是一个demo,具体功能请自行添加
- 2014-03-27下载
- 积分:1
-
andbook
从零开始产android研发学习资料.比较好的学习android借鉴资料 (Android development of learning materials produced from scratch. Better learning android reference information )
- 2011-12-26 17:54:17下载
- 积分:1
-
安卓 AES字符串加密
安卓手机端关于字符串的aes加密,工作模式为BCB,分组密码有五种工作体制:1.电码本模式(Electronic Codebook Book (ECB));2.密码分组链接模式(Cipher Block Chaining (CBC));3.计算器模式(Counter (CTR));4.密码反馈模式(Cipher FeedBack (CFB));5.输出反馈模式(Output FeedBack (OFB))。预制了随机数种子,本代码简单易懂,是学习分组密码算法的好例子,在手机端可实现简单文本加密
- 2023-07-06 12:30:03下载
- 积分:1
-
Android 触摸手势捕获界面
翻译 maninwest@Codeforge 作者:pi19404@CodeProject在这里,我们将查看捕获触摸手势的Android 应用。这个模块是泛型触摸手势识别库的第一部分。手势注册 Android 界面捕获和存储关于候选手势类的过程叫做手势注册。这里,我们将使用GestureOverlay 方法。手势覆盖物用做简单的画板,用户可以在上面画手势。用户可以更改几个视觉属性,如画手势用的颜色和笔触的宽度,并且可注册多个侦听程序跟踪用户的操作。要捕获手势并进行处理,首先要将 GestureOverlayView 添加到 store_gesture.xml XML 布局文件。
......
......
请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2023-06-24 02:20:05下载
- 积分:1
-
相机与相册类
主要是封装好的相机与相册类,阿斯顿撒旦撒旦撒旦飒飒的萨达撒撒按时啊是,可以调用系统相机和相册。
- 2023-02-15 03:25:04下载
- 积分: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
-
时光轴demo
应用背景有对时间流进行系列化展示的app以及形象生动的显示时间线的app可以借鉴关键技术利用组合控件,使用了可扩展ListView即ExpandableListView作为展示内容,另外使用一条竖线View作为时间线
- 2022-03-15 15:13:55下载
- 积分:1