Example usage for android.widget ListView subclass-usage

List of usage examples for android.widget ListView subclass-usage

Introduction

In this page you can find the example usage for android.widget ListView subclass-usage.

Usage

From source file nu.yona.app.customview.NestedListView.java

/**
 * Created by kinnarvasa on 16/06/16.
 */
public class NestedListView extends ListView implements NestedScrollingChild {

    private final NestedScrollingChildHelper mScrollingChildHelper;

From source file ua.yyunikov.android.view.AdditionRemovalListView.java

/**
 * ListView (currently works only with {@link String} objects) with add and remove buttons and appropriate insert/delete animations.
 * For this {@link android.widget.ListView} to work correctly, please specify {@link ua.yyunikov.android.adapters.AdditionRemovalAdapter} as adapter.
 */
public class AdditionRemovalListView extends ListView {

From source file com.sj.android.appusage.ui.widgets.listview.SwipeListView.java

/**
 * ListView subclass that provides the swipe functionality
 */
public class SwipeListView extends ListView {

    /**

From source file com.manojbhadane.view.CircleListView.java

public class CircleListView extends ListView implements OnScrollListener {

    private static final int DEFAULT_SCROLL_DURATION = 200;
    private static final boolean DEBUG = BuildConfig.DEBUG && false;
    public static final int DEFAULT_SELECTION = Integer.MAX_VALUE / 2;
    private static final String TAG = CircleListView.class.getSimpleName();

From source file akhil.alltrans.NestedScrollingListView.java

public class NestedScrollingListView extends ListView implements NestedScrollingChild {
    private final int[] mScrollOffset = new int[2];
    private final int[] mScrollConsumed = new int[2];
    private int mLastY;
    private int mNestedOffsetY;
    @SuppressWarnings("CanBeFinal")

From source file com.sprc.circlelauncher.view.CircleListView.java

public class CircleListView extends ListView implements OnScrollListener {

    private static final String TAG = CircleListView.class.getSimpleName();
    private static final boolean DEBUG = BuildConfig.DEBUG && false;

    private static final int DEFAULT_SCROLL_DURATION = 200;

From source file ti.modules.titanium.ui.widget.listview.TiNestedListView.java

/**
 * ListView which allows "NestedScrollingChild" views to be scrolled within this view
 * on a system older than API Level 21 (aka: Android 5.0).
 * <p>
 * Note that Android's "ListView" class already supports NestedScrollingParent and NestedScrollingChild
 * support on Android 5.0 and higher OS versions. This class is only needed for older OS versions.

From source file com.spoiledmilk.ibikecph.controls.SortableListView.java

public class SortableListView extends ListView {
    private int firstVisibleItem = 0;
    private int viewIndex = 0;
    private int viewHeight;
    private FavoritesAdapter adapter;
    private View view = null;

From source file dk.kk.ibikecphlib.controls.SortableListView.java

/**
 * A list view that allows for sorting of the list items. Used in the list of favorites.
 * @author jens
 *
 */
public class SortableListView extends ListView {

From source file com.redinput.datetimepickercompat.date.YearPickerView.java

/**
 * Displays a selectable list of years.
 */
public class YearPickerView extends ListView implements OnItemClickListener, OnDateChangedListener {
    private static final String TAG = "YearPickerView";