📜 ⬆️ ⬇️

Useful for Android developer from Github

Good day.


Having traveled a lot across Github, I found many interesting projects, source codes, and libraries. And now it's time to share them. Meet a lot of goodies under the cut!



1. FreeFlow


A project that allows you to create something like a mosaic or tiles from Windows Phone, with a lot of interesting and beautiful animations, FreeFlow project is inspired by the iOS framework UICollectionViews .
')
image
Hidden text


2. PhotoView


The library for working with ImageView, and to be more precise to add support for Zoom Gestures, is very powerful and flexible, convenient to use

A little bit about using
@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.fragment_edit_it); ImageView photoView = (ImageView) findViewById(R.id.image); PhotoViewAttacher attacher = new PhotoViewAttacher(photoView); attacher.setZoomable(true); } 


image

3. NotBoringActionBar


A project that shows how to make a not boring action bar like in the Google Newsstand application

image

4. Picasso


The most powerful library for downloading images, transformation, you can easily upload photos to your View from external links, media links, file paths, android resources or other application packages.

Many common Android image download traps are handled automatically by Picasso:


Honestly, this is my favorite library :)
 //    ; Picasso.with(context) .load(url) .resize(50, 50) .centerCrop() .placeholder(R.drawable.user_placeholder) .error(R.drawable.user_placeholder_error) .into(imageView) 


image

And now in Uzbekistan is the holiday of Navruz, with the holiday of you;)

Source: https://habr.com/ru/post/216591/


All Articles