zoukankan      html  css  js  c++  java
  • Useful for Android the development engineer from Github

    Original:http://sysmagazine.com/posts/216591/

    Many plowing on open space Github, I found assemblage of interesting designs, source the codes, and libraries. And now the time came to share them. Meet assemblage vkusnostej under katom! 



    1. FreeFlow


    The design which allows to create that that napodobii mozajki or tiles from Windows Phone, with assemblage of interesting and beautiful animations, FreeFlow the design is inspired iOS frejmvorkom UICollectionViews 

    image 

    the Hidden text



    2. PhotoView


    The library for operation with ImageView and if to be more exact to add support Zoom Gestures, is very powerful and floppy, convenient in usage 

    It is a little about usage 

      @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


    The design, which shows how to make not boring action bar as in Google application Newsstand 

    image 

    4. Picasso


    The most powerful library for loading of pictures, conversion, you can easily load photos in yours View from external references, media links, ways to files, resources androida or other application packages. 

    Many widespread traps of loading of images on Android are processed automatically by means of Picasso: 

    • Control of a recycling and cancellings of loading of images in adaptorah
    • Minimum expenses on tranformatsiju images
    • Automatic caching



    To tell the truth it is my favourite library :) 

     //to Steam of lines with instances;
    Picasso.with (context)
      .load (url)
      .resize (50, 50)
      .centerCrop ()
      .placeholder (R.drawable.user_placeholder)
      .error (R.drawable.user_placeholder_error)
      .into (imageView)
     



    image 

    And still now in Uzbekistan a holiday of Navruz, with the Holiday you ;)

  • 相关阅读:
    sed与正则用法收集
    第一学期网络技术知识总汇
    常用的windows注册表大全
    1-1 Linux系统安装
    用javascript写计算器
    closure
    Linux-Rhel6 恢复误删文件
    flask第十一篇——自定义url转换器
    flask第十篇——url_for【3】
    flask第九篇——url_for【2】
  • 原文地址:https://www.cnblogs.com/GoAhead/p/4186716.html
Copyright © 2011-2022 走看看