Skip to content

cpoopc/ScrollableLayout

Folders and files

NameName
Last commit message
Last commit date

Latest commit

b1ef88e · Sep 19, 2017

History

53 Commits
Feb 10, 2015
Mar 11, 2016
Sep 2, 2015
Feb 10, 2015
Sep 2, 2015
Aug 28, 2017
Aug 27, 2015
Aug 27, 2015
Feb 10, 2015
Sep 2, 2016
Sep 29, 2015
Sep 29, 2015
Feb 10, 2015
Feb 10, 2015
Aug 27, 2015

Repository files navigation

共同头部+ViewPager+ListView(AdapterView)|RecyclerView|ScrollView|WebView
blog:http://blog.csdn.net/w7822938/article/details/47173047
安装包放在/demo-apk,可以直接安装看效果

UPDATE NOTE:

2015/12/18: 添加对WebView的支持.
2015/12/11: 添加canPtr()方法,支持下拉刷新(demo以android-Ultra-Pull-To-Refresh为例.
2015/8/31:
添加对RecyclerView的支持.

效果如下:

Usage

dependencies {
	compile 'com.github.cpoopc:scrollablelayoutlib:1.0.1' // 目前只发布到jcenter
}

1.xml

<com.cpoopc.scrollablelayoutlib.ScrollableLayout
        android:id="@+id/scrollableLayout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">
<-- header -->
  <-- header example -->
        <RelativeLayout
            android:id="@+id/rl_head"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="#cdcdcd">
        </RelativeLayout>
  <-- header example -->

<-- content View -->
  <-- content View example -->
        <com.astuetz.PagerSlidingTabStrip
            android:id="@+id/pagerStrip"
            android:layout_width="match_parent"
            android:layout_height="@dimen/tab_height"
            android:layout_alignParentBottom="true" />
        <android.support.v4.view.ViewPager
            android:id="@+id/viewpager"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />
  <-- content View example -->

    </com.cpoopc.scrollablelayoutlib.ScrollableLayout>

2.xxFragment|xxView|.. implements ScrollableHelper.ScrollableContainer

@Override
    public View getScrollableView() {
        return scrollView;
    }

3.设置当前container

mScrollLayout.getHelper().setCurrentScrollableContainer(scrollableContainer)