码迷,mamicode.com
首页 > 其他好文 > 详细

RecyclerView之LayoutManager

时间:2015-06-17 13:08:55      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:

 

利用RecyclerView显示数据,搭配SwipeRefreshLayout下拉刷新,因此,RecyclerView的显示方向应该是由下往上的,即第一项显示在最下面,最后一项显示在最上面,每次刷新新增的数据都添加在最上面,
所以使用LinearLayoutManager(Context context, int orientation, boolean reverseLayout)构造函数
可以设置数据的显示方向,设置reverseLayout为true即显示方向由下而上

 

    /**
     * @param context       Current context, will be used to access resources.
     * @param orientation   Layout orientation. Should be {@link #HORIZONTAL} or {@link
     *                      #VERTICAL}.
     * @param reverseLayout When set to true, layouts from end to start.
     */
    public LinearLayoutManager(Context context, int orientation, boolean reverseLayout) {
        setOrientation(orientation);
        setReverseLayout(reverseLayout);

 

RecyclerView之LayoutManager

标签:

原文地址:http://www.cnblogs.com/xushihai/p/4582885.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!