下に置いたRecyclerViewがスクロールアップしたときにスクロールアップするViewpagerを表示したいとします。RecyclerViewと共にスクロールするビューページを表示
RecyclerViewに表示される情報は、Viewpagerに表示されるページによって異なります。 Viewpagerの上にはツールバーがあります。
これは私が使用しているレイアウトです:
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout android:id="@+id/coordinatorLayout"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".main.MainActivity">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/toolbarTitle"
android:layout_width="wrap_content"
android:layout_height="?attr/actionBarSize"
android:gravity="center_vertical"
android:textColor="@color/text_white"
android:textSize="18sp"
android:textStyle="bold"/>
</android.support.v7.widget.Toolbar>
</android.support.design.widget.AppBarLayout>
<ScrollView
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="false"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<com.pixplicity.multiviewpager.MultiViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="220dp"
android:background="@color/black"
app:matchChildWidth="@+id/page"/>
<FrameLayout
android:id="@+id/frameLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
</ScrollView>
</android.support.design.widget.CoordinatorLayout>
注:MultiViewPagerは、前のページと次のページの一部を表示するViewPagerです。
ページを選択すると、framelayoutがRecyclerViewを含むフラグメントに置き換えられます。フラグメントのレイアウトは次のとおりです。
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<TextView
android:id="@+id/emptyView"
style="@style/no_data"
android:text="@string/movements_no_data"
android:visibility="gone"/>
</FrameLayout>
キットカットで動作しているようですAlthought、私はマシュマロでそれをしようとすると、動作が奇妙である:スクロールはRecyclerViewことを別の方法でViewpagerを移動します。
注2:Kitkatでスクロールが最初にTOPから移動されるため、アプリの起動時にスクロールの位置をリセットする必要があります。私はリセットに使用するコードは次のとおりです。このレイアウトを実装する方法について
scrollView.post(new Runnable() {
public void run() {
scrollView.fullScroll(View.FOCUS_UP);
}
});
その他のレイアウトの提案やアイデアをいただければ幸いです。
リサイクラにヘッダとして必要なレイアウトを追加してください。 –
提案通りに編集されています。 – Fer