新しいCoordinatorLayoutの使用を開始しましたが、次の問題が発生しました。
ツールバーが部分的に表示されていて、recylcerviewが一番上の位置にあるときに下にスクロールしようとすると、ツールバーをプルダウンする代わりに更新イベントがトリガーされます。ユーザーは、それを表示するために、もう一度下にスクロールするよりも上にスクロールする必要があります。
レイアウトXMLは次のようになります。activity_main.xml:
<Android.support.v4.widget.DrawerLayout 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:id="@+id/drawer_layout"
Android:layout_width="match_parent"
Android:layout_height="match_parent"
Android:fitsSystemWindows="true">
<Android.support.design.widget.CoordinatorLayout
xmlns:Android="http://schemas.Android.com/apk/res/Android"
xmlns:app="http://schemas.Android.com/apk/res-auto"
Android:layout_width="match_parent"
Android:layout_height="match_parent">
<Android.support.design.widget.AppBarLayout
Android:layout_width="match_parent"
Android:layout_height="wrap_content">
<Android.support.v7.widget.Toolbar
Android:id="@+id/toolbar"
style="@style/customActionBar"
Android:layout_width="match_parent"
Android:layout_height="wrap_content"
Android:background="?attr/colorPrimary"
Android:minHeight="?attr/actionBarSize"
app:layout_scrollFlags="scroll|enterAlways"/>
</Android.support.design.widget.AppBarLayout>
<FrameLayout
Android:id="@+id/container"
Android:layout_width="match_parent"
Android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
</Android.support.design.widget.CoordinatorLayout>
<Android.support.design.widget.NavigationView
Android:id="@+id/navigation_view"
Android:layout_width="wrap_content"
Android:layout_height="match_parent"
Android:layout_gravity="start"
Android:background="@Android:color/white"
app:headerLayout="@layout/navigation_drawer_header"
app:menu="@menu/navigation_items" />
</Android.support.v4.widget.DrawerLayout>
fragment_main.xml:
<FrameLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
xmlns:tools="http://schemas.Android.com/tools"
Android:layout_width="match_parent"
Android:layout_height="match_parent">
<Android.support.v4.widget.SwipeRefreshLayout
Android:id="@+id/swipe_refresh"
Android:layout_width="match_parent"
Android:layout_height="match_parent">
<Android.support.v7.widget.RecyclerView
Android:id="@+id/recycler_view"
Android:layout_width="match_parent"
Android:layout_height="match_parent"
Android:clipToPadding="false"
Android:padding="8dp"
Android:scrollbars="none" />
</Android.support.v4.widget.SwipeRefreshLayout>
</FrameLayout>
アプリのフラグメントにはさらに多くの要素があるため、SwipeRefreshLayoutはFrameLayoutにあります。
どんな助けでもいただければ幸いです。
UPDATE:この問題は、サポートライブラリv23.1.1で修正されています。
AppBarLayout.OnOffsetChangedListener
を使用して、SwipeRefreshLayout
オフセットが変更されたときに、AppBarLayout
を有効/無効にする必要があるようです。
手遅れかもしれませんが、それはどんな新参者にも役立つかもしれません、私はそのための簡単な解決策を思いつきました。 class
を拡張するカスタムSwipeRefreshLayout
を作成することにより、AppBaLayout
が存在する場所ならどこでも使用できます。以下のコードに従ってください。
public class MySwipeLayout extends SwipeRefreshLayout implements AppBarLayout.OnOffsetChangedListener {
private AppBarLayout appBarLayout;
public MySwipeLayout(Context context) {
super(context);
}
public MySwipeLayout(Context context, AttributeSet attrs) {
super(context, attrs);
}
@Override
protected void onAttachedToWindow() {
super.onAttachedToWindow();
if (getContext() instanceof Activity) {
appBarLayout = (AppBarLayout) ((Activity) getContext()).findViewById(R.id.appbar);
appBarLayout.addOnOffsetChangedListener(this);
}
}
@Override
protected void onDetachedFromWindow() {
if(appBarLayout!=null){
appBarLayout.removeOnOffsetChangedListener(this);
appBarLayout = null;
}
super.onDetachedFromWindow();
}
@Override
public void onOffsetChanged(AppBarLayout appBarLayout, int i) {
this.setEnabled(i == 0);
}
}