Example usage for android.support.v4.widget NestedScrollView subclass-usage

List of usage examples for android.support.v4.widget NestedScrollView subclass-usage

Introduction

In this page you can find the example usage for android.support.v4.widget NestedScrollView subclass-usage.

Usage

From source file com.dj.hacktor.nshiddenlayout.views.CustomNestedScrollView.java

/**
 * Copyright 2015-2016 Deepansh Jain
 * <p/>
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at

From source file im.vector.view.CodeBlockNestedScrollView.java

public class CodeBlockNestedScrollView extends NestedScrollView {

    public CodeBlockNestedScrollView(Context context) {
        super(context);
    }

From source file com.example.xyzreader.ui.ObservableScrollView.java

/**
 * A custom ScrollView that can accept a scroll listener.
 */
public class ObservableScrollView extends NestedScrollView {
    private Callbacks mCallbacks;

From source file com.aashish.chennaichanceyillai.ui.ObservableScrollView.java

/**
 * A custom ScrollView that can accept a scroll listener.
 */
public class ObservableScrollView extends NestedScrollView {
    private Callbacks mCallbacks;

From source file com.zzc.androidtrain.view.refresh.NestedScrollView.java

/**
 * Created by henrytao on 10/1/15.
 */
public class NestedScrollView extends android.support.v4.widget.NestedScrollView {

    protected List<OnScrollChangeListener> mOnScrollListeners;

From source file me.henrytao.smoothappbarlayout.widget.NestedScrollView.java

/**
 * Created by henrytao on 10/1/15.
 */
public class NestedScrollView extends android.support.v4.widget.NestedScrollView {

    protected List<OnScrollListener> mOnScrollListeners;

From source file org.dmfs.tasks.widget.ListenableScrollView.java

/**
 * Just a {@link ScrollView} that can notify a listener when the user scrolls.
 * <p />
 * TODO: get rid of it once the editor is refactored.
 * 
 * @author Marten Gajda <marten@dmfs.org>

From source file im.ene.lab.design.widget.layout.ScrollView.java

/**
 * Created by eneim on 7/16/15.
 */
public class ScrollView extends NestedScrollView implements Designer.Scrollable {

    public ScrollView(Context context) {

From source file com.learn.mobile.customview.henrytao.widget.NestedScrollView.java

/**
 * Created by henrytao on 10/1/15.
 */
public class NestedScrollView extends android.support.v4.widget.NestedScrollView {

    protected List<OnScrollListener> mOnScrollListeners;

From source file com.evandroid.musica.view.NonFocusableNestedScrollView.java

public class NonFocusableNestedScrollView extends NestedScrollView {

    public NonFocusableNestedScrollView(Context context) {
        super(context);
    }