-
FlowLayout
说明: 流失标签,用于搜索推荐,可定义点击状态,用于搜索推荐,可定义点击状态(Lost tags, used for search recommendation, can define click status, used for search recommendation, can define click status)
- 2020-06-21 22:20:02下载
- 积分:1
-
SpeakMessageService
安卓短信语音播报的应用。可以将接受的文字转化为语音,并且通过扬声器播报。(Android SMS voice broadcast applications. Accepted text can be converted to voice, and broadcasted through the speaker.)
- 2020-09-23 14:07:49下载
- 积分:1
-
安卓客户端拍照显示
安卓拍照程序, 包括拍照,选中,删除,上传 的功能,返回按钮,简洁实用,测试可用 。文件全面。
- 2022-06-20 09:08:12下载
- 积分:1
-
wenduji
Android项目源码基于传感器的温度计开发是android应用上的温度计,是通过传感器来感知外面的温度。应该说这个应用太强大了,用到传感器技术,并能时时更新。项目中代码层次分明,大部分方法都加了详细的注释。对于想学习传感器的开发人员来说,简直是福音。(项目采用GBK编码,是studio工程)。(Android project source sensor based on the development of the thermometer is a thermometer on the Android application, it is through the sensor to sense the temperature outside. It should be said that this application is too powerful, the use of sensor technology, and can always update. Items in the code level, most of the methods have added a detailed notes. For developers who want to learn sensor, it is the gospel. (the project uses the GBK code, is the studio project).)
- 2016-05-16 11:37:00下载
- 积分:1
-
Android WebView中的JavaScript与Android的互相调用
由于项目需要在Android方法中调用JS实现相应的功能,在学习WebView组件时,参照李刚的《疯狂Android讲义》,但是它讲的太简单了,只有JS调用Android方法,却没有提及Androi如何调用JS方法,所以上网学习并简单的写了一个实例
- 2022-01-26 07:35:03下载
- 积分:1
-
200个电路实例
【实例简介】
- 2021-10-01 00:30:57下载
- 积分:1
-
androidʵ
- 2022-03-31 14:41:01下载
- 积分:1
-
android中gallery的使用
1.FileCache 文件缓存操作类
2.ImageLoader图片加载类,首先从内存中加载,如果内存中不存在,则从本地加载,如果本地也没有,则从网络上下载。
3.MemoryCache内存缓存操作类
4.ShopGoodsDetailGalleryAdapter适配器
5.MainActivity程序运行的入口
- 2022-02-15 16:46:34下载
- 积分: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 文件读写 例子源码下载
- 2015-03-07下载
- 积分:1