Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

CoderPanPan/ScrollableLayout

Open more actions menu
 
 

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)

About

共同头部+ViewPager+ListView http://blog.csdn.net/w7822938/article/details/47173047

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Java 100.0%
Morty Proxy This is a proxified and sanitized view of the page, visit original site.