登录
首页 » Android » 二维码扫描

二维码扫描

于 2022-04-29 发布 文件大小:22.46 kB
0 186
下载积分: 2 下载次数: 1

代码说明:

有空的时候,自己封装的很好用,不要忘了加权限,不然会闪退

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • Android webview全屏播放HTML video视频
    Android webview全屏播放HTML video视频,单击播放后自动全屏显示,测试时的视频格式为mp4,其它通用格式未测试,自己改进吧。本播放功能在手机触屏后显示进度条,是一种比较流行的视频播放器操作形式,在Android中开发播放APP或播放功能的可参考下。
    2022-04-09 02:14:03下载
    积分:1
  • 滑动效果
    滑动效果
    2015-01-18下载
    积分:1
  • Speex lib 安卓系统,android ndk r10开发
    Speex 是一个开放源代码/自由软件专利免费音频压缩格式设计的演讲。Speex 项目的目的是进入的通过提供一个免费的替代昂贵的专有语音编解码器来降低语音应用程序门槛。此外,Speex 是适应良好,互联网的应用,提供了有用的功能,在大多数其他编解码器中不存在。最后,Speex 是GNU项目的一部分,并在下订正的 BSD 许可证。 这项技术 Speex 基于CELP ,设计来压缩 2 至 44 kbps的比特率的声音。一些 Speex 的功能包括: 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
    2022-01-25 16:17:56下载
    积分:1
  • H264硬件编码,通过RTP协议发送
    应用背景 本人对android已无大爱,更新太快,就h264编码先后实现了 ffmpeg+x264软编  Mediarecoder提取,还没能稳定的又出了MediaCodec,更新太快。更新快也是好事,说明android生命力旺盛。 既然瞅了几眼,就发出来个测试版本吧。android编码h264, 用udp发送到vlc播放测试。 关键技术关键技术:MediaCodec,H264硬编码,这个程序实现了摄像头采集,编码,通过网络传输的功能,接收端最好采用vlc或者能够解析udp包的播放器进行播放,否则可能无法播放
    2022-03-03 19:41:38下载
    积分:1
  • Android应用源码之afinal框架实现图片的简单异步缓存加载.rar
    【实例简介】
    2021-09-07 00:31:13下载
    积分:1
  • 集成正则匹配的EditText
    自定义EditText,集成了QQ、手机号、邮箱、数字、网址、中文正则表达式验证
    2022-09-08 17:00:04下载
    积分:1
  • 可以按块单独设置样式的TextView
    应用背景一个TextView可以显示不同的字体颜色和大小,有需要的可以借鉴关键技术 自定义TextView集成原生TextView,将TextView划分成piece,每一个piece都可以显示不同样式的文本
    2022-03-01 02:19:17下载
    积分:1
  • Android
    2022-04-14 21:11:45下载
    积分:1
  • weibo
    实现简易微博功能的安卓app,可以发送心情到公众平台并在网页上可以显示读取。(an android app, functioned pretty like weibo,we can twitter in a public platform and read other people s weibo.)
    2015-11-16 15:13:08下载
    积分: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
  • 696516资源总数
  • 106914会员总数
  • 0今日下载