Back to project page Android-CleanArchitecture.
The source code is released under:
Apache License
If you think the Android project Android-CleanArchitecture listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * Copyright (C) 2014 android10.org. All rights reserved. * @author Fernando Cejas (the android10 coder) *//* w w w. jav a 2 s . c om*/ package com.fernandocejas.android10.sample.presentation.view.adapter; import android.content.Context; import android.support.v7.widget.LinearLayoutManager; /** * Layout manager to position items inside a {@link android.support.v7.widget.RecyclerView}. */ public class UsersLayoutManager extends LinearLayoutManager { public UsersLayoutManager(Context context) { super(context); } }