All Projects → pavlospt → Litho Glide

pavlospt / Litho Glide

Licence: mit
Glide image-loading Component for Litho

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Litho Glide

Awesome Third Library Source Analysis
📖 Deep understanding of popular open source library source code (optimizing...)
Stars: ✭ 866 (+724.76%)
Mutual labels:  glide
React Native Spaceviewer
See and search upcoming and previous rocket space launches! Built with React Native, using Detox E2E tests, Fastlane and Github Actions for app store deployment.
Stars: ✭ 61 (-41.9%)
Mutual labels:  glide
Glide Transformations
An Android transformation library providing a variety of image transformations for Glide.
Stars: ✭ 9,540 (+8985.71%)
Mutual labels:  glide
Glidedemo
A demo describes how to load images by using Glide
Stars: ✭ 21 (-80%)
Mutual labels:  glide
Retrofit Recyclervew
An implementation of a RecyclerView using Retrofit and Glide to create a movie list
Stars: ✭ 40 (-61.9%)
Mutual labels:  glide
Wanandroid
🔥项目采用 Kotlin 语言,基于 MVP + RxJava + Retrofit + Glide + EventBus 等架构设计,努力打造一款优秀的 [玩Android] 客户端
Stars: ✭ 1,223 (+1064.76%)
Mutual labels:  glide
Zsbpads
Material design、MVC、OKHttp、Glide、greendao 设计的一款面试题题库的app完整项目
Stars: ✭ 25 (-76.19%)
Mutual labels:  glide
Rdgliderviewcontroller Swift
Control for a floating view gliding over a ViewController Edit
Stars: ✭ 102 (-2.86%)
Mutual labels:  glide
Android Toy
不积跬步 无以至千里
Stars: ✭ 54 (-48.57%)
Mutual labels:  glide
Qbox
🐈 RxJava+Retrofit+Okhttp+Glide + A life tool App, contains modules: news; jokes; constellation fortune; LED; weather; calendar; two-dimensional code, and more ... 小秋魔盒是一个生活工具 App,主要功能有:新闻资讯;微信精选美文;笑话趣图;星座运势;LED字幕;天气;日历;二维码;手电筒;老黄历。在开发中尽可能多的用了目前比较流行的框架和库。
Stars: ✭ 1,360 (+1195.24%)
Mutual labels:  glide
Glide
An image loading and caching library for Android focused on smooth scrolling
Stars: ✭ 32,046 (+30420%)
Mutual labels:  glide
Easyandroid
一个完整基于kotlin的安卓开发框架,采用了mvvm设计模式。涵盖了: 1、基于retrofit2封装的通过kotlin协程实现的网络框架 2、基于阿里开源router修改的api-router实现项目模块化 3、基于glide的图片加载缓存框架 4、基于room实现的往来数据缓存加载 5、基于step实现的数据异步提交 6、基于PreferenceHolder实现的本地数据快速存储 7、基于mlist实现的简单复杂列表的快速开发扩展 8、定制的toolbar可以自适应异形屏,挖孔屏,水滴屏等等。。 本框架几乎涵盖了开发所需的所有模块组件。简单fork之后就可以基于框架快速开发。
Stars: ✭ 33 (-68.57%)
Mutual labels:  glide
Sample Code Movies
This repository contains sample code. Its purpose being, to quickly demonstrate Android and software development in general, clean code, best practices, testing and all those other must know goodies.
Stars: ✭ 81 (-22.86%)
Mutual labels:  glide
Afmall
A pure shopping App based on Kotlin + ARouter + MVP + RxJava2 + Retrofit + Dagger2 + 七牛云 + Glide
Stars: ✭ 20 (-80.95%)
Mutual labels:  glide
Mvpframes
整合大量主流开源项目并且可高度配置化的 Android MVP 快速集成框架,支持 AndroidX
Stars: ✭ 100 (-4.76%)
Mutual labels:  glide
Kotlin Life
App界的一股清流 音视频vr应有尽有 完全按照Material design规范设计的App (written with java and Kotlin)
Stars: ✭ 864 (+722.86%)
Mutual labels:  glide
Progressglide
Track progress while downloading image in Glide
Stars: ✭ 77 (-26.67%)
Mutual labels:  glide
Glide Docs Cn
Glide简体中文文档站点托管项目。
Stars: ✭ 1,395 (+1228.57%)
Mutual labels:  glide
Basemvp Master
一个基本的MVP应用框架(RxJava+Retrofit+Glide+IjkPlayer),封装比较完善,易于使用,帮助日常快速开发一个项目。
Stars: ✭ 101 (-3.81%)
Mutual labels:  glide
Rximagepicker
Android图片相册预览选择器、支持AndroidX,支持图片的单选、多选、图片预览、图片文件夹切换、在选择图片时调用相机拍照
Stars: ✭ 85 (-19.05%)
Mutual labels:  glide

Litho - Glide

Litho Glide is a Litho compatible library, which provides an Image Component compatible with Glide. Litho-Glide supports a wide part of Glide's functionality. If you notice that anything is missing ping us :)

Inspiration: http://www.jayrambhia.com/blog/android-litho-gifs

How to use

Add the following dependency on your app's build.gradle:

compile 'com.github.pavlospt:litho-glide:1.6'

Add GlideImage component on your own Component :)

GlideImage.create(c)
    .imageUrl(image)
    .aspectRatio(aspectRatio)
    .centerCrop(true)
    .build();

Here you can find a sample ComponentSpec that uses GlideImage component.

Other

Litho repository: https://github.com/facebook/litho

Litho documentation: http://fblitho.com/docs/getting-started

License

MIT License

Copyright (c) 2017 Pavlos-Petros Tournaris & Vasilis Charalampakis

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].