画面の上部に配置されたカスタム カレンダー ビューがあり、recyclerview のスクロールに基づいてそのウィジェットを非表示にしようとすると、ウィジェットは以下のスクリーンショットのように空の画面のままになります
上記のcalendarViewは、このような空白を残します
これが私のfragment.xmlのコードです
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
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"
android:background="@drawable/gradient_background"
android:orientation="vertical"
tools:context=".employer.AttendedFragment">
<com.shrikanthravi.collapsiblecalendarview.widget.CollapsibleCalendar
android:id="@+id/calendar_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:buttonLeft_drawableTintColor="@android:color/white"
app:buttonRight_drawableTintColor="@android:color/white"
app:expandIconColor="@color/itemColorDefault"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_scrollFlags="scroll|enterAlways"
app:primaryColor="@color/colorPrimary"
app:selectedItem_background="@drawable/circle_white_solid_background"
app:selectedItem_textColor="@color/colorPrimary"
app:textColor="@android:color/white"
app:todayItem_background="@drawable/circle_white_stroke_background"
app:todayItem_textColor="@android:color/white">
</com.shrikanthravi.collapsiblecalendarview.widget.CollapsibleCalendar>
<android.support.v7.widget.RecyclerView
android:id="@+id/attendance_recyclerview"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:clipToPadding="false">
</android.support.v7.widget.RecyclerView>
</LinearLayout>
そして、これが私がどのようにビューを隠しているかです
@Override
public void onHide() {
mCalendarView.animate().translationY(-mCalendarView.getHeight()).setInterpolator(new AccelerateInterpolator(2));
}
@Override
public void onShow() {
mCalendarView.animate().translationY(0).setInterpolator(new DecelerateInterpolator(2));
}
recyclerView をスクロールするときにその空白を削除する方法を教えてください