serso / android-linear-layout-manager

Linear Layout Manager which supports WRAP_CONTENT

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Linear Layout Manager

DEPRECATED

RecyclerView supports WRAP_CONTENT starting from Android Support Library 23.2. More details here: http://android-developers.blogspot.se/2016/02/android-support-library-232.html

Description

Implementation of LinearLayoutManager which wraps its contents.

Usage example:

final LinearLayoutManager layoutManager = new org.solovyev.android.views.llm.LinearLayoutManager(this, LinearLayoutManager.VERTICAL, false);
final RecyclerView recyclerView = (RecyclerView) findViewById(R.id.recyclerview);
recyclerView.setLayoutManager(layoutManager);
recyclerView.addItemDecoration(new DividerItemDecoration(this, null));
recyclerView.setAdapter(adapter);

Note that if the child views in your RecyclerView have the fixed size LinearLayoutManager#setChildSize should be used to avoid unnecessary measuring.

Installation

Gradle dependency:

compile 'org.solovyev.android.views:linear-layout-manager:0.5@aar'

Maven dependency:

<dependency>
    <groupId>org.solovyev.android.views</groupId>
    <artifactId>linear-layout-manager</artifactId>
    <version>0.5</version>
    <type>apklib</type>
</dependency>

License

Library is distributed under Apache 2.0 license, see LICENSE.txt

Applications

The following applications use this library:

About

Linear Layout Manager which supports WRAP_CONTENT

License:Other


Languages

Language:Java 100.0%