Android开源库集合(工具)
图片加载框架:
- Glide https://github.com/bumptech/glide
- Android-Universal-Image-Loader https://github.com/nostra13/Android-Universal-Image-Loader
- Picasso https://github.com/square/picasso
- Fresco https://github.com/facebook/fresco
Apk动态加载框架:
- DynamicLoadApk https://github.com/singwhatiwanna/dynamic-load-apk
- DynamicAPK https://github.com/CtripMobile/DynamicAPK
- AndroidDynamicLoader https://github.com/mmin18/AndroidDynamicLoader
- android-pluginmgr https://github.com/houkx/android-pluginmgr
- DroidPlugin https://github.com/Qihoo360/DroidPlugin
数据库框架:
数据库迁移框架 https://github.com/flyway/flyway
xmpp协议客户端框架 https://github.com/igniterealtime/Smack
谷歌地图扩展 https://github.com/googlemaps/android-maps-utils

监控当前网络流量并区分网络质量:https://github.com/facebook/network-connection-class

输入校验库:
- https://github.com/yoojia/NextInputs
- 基于data binding的输入校验库:
https://github.com/Ilhasoft/data-binding-validator
McImage是一个插件帮助你检查你res中的大图和全量压缩你的res:https://github.com/Mobcase/McImage
简单、美观、强大、可扩展的 Android 和 Java 日志库:https://github.com/elvishew/xLog

信用卡OCR库,扫描识别数字:https://github.com/card-io/card.io-Android-SDK
多渠道打包:
加快加载Dex文件速度:https://github.com/asLody/TurboDex
通过两张静态图片创建为一个有动画效果的SVG图片:https://github.com/bonnyfone/vectalign

运行时权限请求库:
Apk资源混淆工具,帮助减小apk体积:https://github.com/shwenzhang/AndResGuard

视频播放:
测试框架:
创建notification https://github.com/halysongoncalves/pugnotification
Webview与JS交互 https://github.com/pedant/safe-java-js-webview-bridge
Webview支持html5播放视频 https://github.com/cprcrack/VideoEnabledWebView
对Camera类封装 https://github.com/Glamdring/EasyCamera
操作蓝牙:https://github.com/alt236/Bluetooth-LE-Library---Android
指纹管理工具:
图片压缩:https://github.com/nanchen2251/CompressHelper

SQLite数据与Excel数据相互转换 https://github.com/li-yu/SQLiteToExcel
Android开源库集合(工具)的更多相关文章
- Android开源库集合(控件)
RecycleView: RecycleView功能增强 https://github.com/Malinskiy/SuperRecyclerView RecycleView功能增强(拖拽,滑动删除, ...
- android 开源库集合的链接列表
1. 内容挺多的 https://github.com/Trinea/android-open-project
- Android开源库集合(UI效果)
动画效果 粒子动画效果 https://github.com/glomadrian/Grav 水波式loading等待动画 https://github.com/race604/WaveLoading ...
- GitHub上排名前100的Android开源库介绍(来自github)
本项目主要对目前 GitHub 上排名前 100 的 Android 开源库进行简单的介绍,至于排名完全是根据 GitHub 搜索 Java 语言选择 (Best Match) 得到的结果,然后过滤了 ...
- GitHub Top 100的Android开源库
摘要: 本项目主要对目前 GitHub 上排名前 100 的 Android 开源库进行简单的介绍, 至于排名完全是根据GitHub搜索Java语言选择「Best M... 本项目主要对目前 GitH ...
- 我的Android进阶之旅】GitHub 上排名前 100 的 Android 开源库进行简单的介绍
GitHub Android Libraries Top 100 简介 本文转载于:https://github.com/Freelander/Android_Data/blob/master/And ...
- <Android开源库 ~ 1> GitHub Android Libraries Top 100 简介
转载自GitHub Android Libraries Top 100 简介 本项目主要对目前 GitHub 上排名前 100 的 Android 开源库进行简单的介绍, 至于排名完全是根据 GitH ...
- GitHub上排名前100的Android开源库介绍
GitHub上排名前100的Android开源库介绍 文章来源: http://www.open-open.com/news/view/1587067#6734290-qzone-1-31660-bf ...
- 【Java&Android开源库代码分析】のandroid-async-http の开盘
在<[Java&Android开源库代码剖析]のandroid-smart-image-view>一文中我们提到了android-async-http这个开源库,本文正 ...
随机推荐
- 使用VBA批量转换Excel格式,由.xls转换成.xlsx
问题分析: Excel2007以前的格式是.xls,之后的格式是.xlsx.打开单独的一个Excel文档,使用“另存为”功能,可以很轻松的转换格式.但是面对几百个Excel表这样就太累了,搜索很久,也 ...
- Oracle中对number类型数据to_char()出现各位少0,或者值为###的处理
问题描述: 在Oracle中使用to_char()函数时当number值为小数时,常常个位0不显示 比如:select to_char(0.02) from dual,结果为.02 改进为 selec ...
- HGOI20190126 模拟赛
/* 最后一题比较难! */ solution:观察这个奇怪的图,不能共用走廊,就是1.2打包,3,4打包,每个包之间连线的线段覆盖问题. 考虑吧每个数映射成一个约为一半的数,且相邻(前奇后偶映射值一 ...
- AIO 开始不定时的抛异常: java.io.IOException: 指定的网络名不再可用
一天里会抛出几个这样的错误,但发现服务还在正常的运行. java.io.IOException: 指定的网络名不再可用. at sun.nio.ch.Iocp.translateErrorToIOEx ...
- 内联汇编_把a值赋给b的汇编代码
int main(int argc, char *argv[]) { int a = 10, b; __asm__("movl %1, %%eax\n\t" "movl ...
- 「Django」浏览+1的操作
适应于网页.文章等浏览次数统计 1.Models设置:添加viewed方法 class NewsTitle(models.Model): title = models.CharField(max_le ...
- 集成maven和Spring boot的profile功能
思路:maven支持profile功能,当使用maven profile打包时,可以打包指定目录和指定文件,且可以修改文件中的变量.spring boot也支持profile功能,只要在applica ...
- vue-cli构建项目使用 less
在vue-cli中构建的项目是可以使用less的,但是查看package.json可以发现,并没有less相关的插件,所以我们需要自行安装. 第一步:安装 npm install less less- ...
- ML—R常用多元统计分析包(持续更新中……)
基本的R包已经实现了传统多元统计的很多功能,然而CRNA的许多其它包提供了更深入的多元统计方法,下面要综述的包主要分为以下几个部分: 1) 多元数据可视化(Visualising multivaria ...
- shell 判断脚本参数
测试登陆脚本 ./test.sh -p 123 -P 3306 -h 127.0.0.1 -u root #!/bin/sh ];then echo "USAGE: $0 -u user - ...










