图片选择器 Super Image Picker
- 授权协议: GPL
- 开发语言: Java
- 操作系统: 跨平台
- 软件首页: https://github.com/martin90s/ImagePicker
- 软件文档: https://github.com/martin90s/ImagePicker/blob/master/README.md
软件介绍
Super Image Picker是一款功能超强的图片选择器。支持超大图预览(比如 10000*5000 的图),支持图片裁剪,可配置头像模式和普通模式,支持动态配置 ImageLoader 以支持多种图片加载库,以及实现流畅的跳转动画。
如何添加
Gradle
1.在Project的build.gradle 中添加仓库地址
// JitPack仓库地址
maven { url "https://jitpack.io" }示例:
allprojects {
repositories {
jcenter() // JitPack仓库地址
maven { url "https://jitpack.io" }
}
}2.在app目录下的build.gradle中添加依赖
//SImagePicker compile 'com.github.martin90s:ImagePicker:V1.1'
如何使用
1.首先初始化(推荐在Application的oncreate中调用)
SImagePicker.init(new PickerConfig.Builder().setAppContext(this) .setImageLoader(new FrescoImageLoader()) .setToolbaseColor(getColor(R.color.colorPrimary)) .build());
2.在需要选择图片的地方调用
SImagePicker .from(MainActivity.this) .maxCount(9) .rowCount(3) .pickMode(SImagePicker.MODE_IMAGE) .fileInterceptor(new SingleFileLimitInterceptor()) .forResult(REQUEST_CODE_IMAGE);
Build Your Own Web Site the Right Way Using HTML & CSS
Ian Lloyd / SitePoint / 2006-05-02 / USD 29.95
Build Your Own Website The Right Way Using HTML & CSS teaches web development from scratch, without assuming any previous knowledge of HTML, CSS or web development techniques. This book introduces you......一起来看看 《Build Your Own Web Site the Right Way Using HTML & CSS》 这本书的介绍吧!
