All Projects → bilibili → Drawee Text View

bilibili / Drawee Text View

Licence: apache-2.0
Simple drawee spannable text view based on Fresco

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Drawee Text View

Windowimageview
An ImageView display in RecyclerView, looks like window.
Stars: ✭ 699 (-8.98%)
Mutual labels:  fresco
Sprintnba
🏀 NBA客户端
Stars: ✭ 629 (-18.1%)
Mutual labels:  fresco
Scrollgalleryview
🌉 Android image gallery with bottom scroll view
Stars: ✭ 481 (-37.37%)
Mutual labels:  fresco
Imageloaderframework
打造统一的图片加载框架,融合Glide(4.x),Fresco,不侵入业务代码,一套API兼容两种加载库
Stars: ✭ 422 (-45.05%)
Mutual labels:  fresco
Frescoutils
Fresco 的封装,快速上手,图像后处理,超大图高清预览,缩小放大,双击放大等一一俱全。简书 http://www.jianshu.com/p/cd058a924288
Stars: ✭ 345 (-55.08%)
Mutual labels:  fresco
Landscapist
🍂 Jetpack Compose image loading library which can fetch and display network images using Glide, Coil, and Fresco.
Stars: ✭ 264 (-65.62%)
Mutual labels:  fresco
BaseDevelop
an android project for now fashion open source framework
Stars: ✭ 24 (-96.87%)
Mutual labels:  fresco
Imageloader
a wrapper for fresco,glidev3,v4, a solution for image load and big image preview, and provide debug tool for imageview
Stars: ✭ 224 (-70.83%)
Mutual labels:  fresco
Advancedandroid
Android 进阶
Stars: ✭ 2,446 (+218.49%)
Mutual labels:  fresco
Suiyue
碎阅APP
Stars: ✭ 177 (-76.95%)
Mutual labels:  fresco
Transformers
An Android transformation library providing a variety of image transformations for Coil, Glide, Picasso, and Fresco.
Stars: ✭ 167 (-78.26%)
Mutual labels:  fresco
Frescoimageviewer
Customizable Android full screen image viewer for Fresco library supporting "pinch to zoom" and "swipe to dismiss" gestures. Made by Stfalcon
Stars: ✭ 1,807 (+135.29%)
Mutual labels:  fresco
Jd Test
仿京东app 全新组件化架构升级
Stars: ✭ 1,346 (+75.26%)
Mutual labels:  fresco
Fresco
A FRamework for Efficient Secure COmputation
Stars: ✭ 83 (-89.19%)
Mutual labels:  fresco
Newspaper
An aggregated newspaper app containing news from 10+ local news publishers in Hong Kong. Made with ❤
Stars: ✭ 82 (-89.32%)
Mutual labels:  fresco
Photobrowser.forms
Full screen image viewer(Xamarin.Forms) that includes "pinch to zoom" and "swipe to dismiss" gestures.
Stars: ✭ 75 (-90.23%)
Mutual labels:  fresco
Tc Material Design
Série de artigos sobre o Material Design Android
Stars: ✭ 64 (-91.67%)
Mutual labels:  fresco
Business Search App Java
Showcases object oriented programming in Java, Java Swing, Kotlin, and Android
Stars: ✭ 53 (-93.1%)
Mutual labels:  fresco
Nativescript Fresco
This repository holds the NativeScript plugin that exposes the functionality of the Fresco image library to NativeScript developers.
Stars: ✭ 51 (-93.36%)
Mutual labels:  fresco
Gallery
图片缩放以及相册的实现
Stars: ✭ 24 (-96.87%)
Mutual labels:  fresco

DraweeTextView

Simple drawee spannable text view based on Fresco.
Build Status

Usage

DraweeTextView textview = (DraweeTextView)findViewById(R.id.text);

SpannableStringBuilder builder = new SpannableStringBuilder();
builder.append("2333333\n")
start = builder.length();
builder.append("[emotion:tv_cheers]");
DraweeSpan span = new DraweeSpan("http://static.yo9.com/web/emotions/tv_cheers.png");
builder.setSpan(span, start, builder.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
builder.append("bilibili- ( ゜- ゜)つロ 乾杯~\n");

...

textview.setText(builder);

demo

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].