Popularity
5.0
Stable
Activity
0.0
Stable
419
14
96

Code Quality Rank: L5
Programming language: Java
License: GNU General Public License v3.0 or later
Tags: Layout Widget    

android-linear-layout-manager alternatives and similar packages

Based on the "Layout Widget" category.
Alternatively, view android-linear-layout-manager alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of android-linear-layout-manager or a related project?

Add another 'Layout Widget' Package

README

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:


*Note that all licence references and agreements mentioned in the android-linear-layout-manager README section above are relevant to that project's source code only.