Skip to content

Sets of newly designed listviews with easy implementation...

Notifications You must be signed in to change notification settings

Shwaubh/AsesListView

Repository files navigation

AsesListView

Sets of newly designed listviews with easy implementation...

It contains a sample app using a simple 2 text list view implemented in fews line for you..

allprojects { repositories { ... maven { url 'https://jitpack.io' } } } Step 2. Add the dependency

dependencies {
        implementation 'com.github.Shwaubh:AsesListView:v1.0'

}

EaseView a = (EaseView) findViewById(R.id.aa);

ArrayList upper = new ArrayList<>();

ArrayList lower = new ArrayList<>();


for(int i = 0; i < 100 ; i++ )
{
    upper.add("Upper " +i);
    lower.add("lower " +i);
}
a.init(this , upper , lower);

<second.test.aseslib.EaseView

android:layout_width="match_parent"

android:layout_height="match_parent"

android:id="@+id/aa"

android:background="@android:color/holo_green_dark"

/>

And you are done with your listview..

a b