Fix ItemTouchHelper issue?

This commit is contained in:
Docile-Alligator 2022-12-23 22:11:34 -08:00
parent a6a46bb29f
commit 24b33bb05d
4 changed files with 0 additions and 13 deletions

View File

@ -180,9 +180,6 @@ public class CommentsListingFragment extends Fragment implements FragmentCommuni
exceedThreshold = false; exceedThreshold = false;
touchHelper.attachToRecyclerView(null); touchHelper.attachToRecyclerView(null);
touchHelper.attachToRecyclerView(mCommentRecyclerView); touchHelper.attachToRecyclerView(mCommentRecyclerView);
if (mAdapter != null) {
mAdapter.onItemSwipe(viewHolder, direction, swipeLeftAction, swipeRightAction);
}
} }
} }

View File

@ -496,9 +496,6 @@ public class HistoryPostFragment extends Fragment implements FragmentCommunicato
exceedThreshold = false; exceedThreshold = false;
touchHelper.attachToRecyclerView(null); touchHelper.attachToRecyclerView(null);
touchHelper.attachToRecyclerView(mPostRecyclerView); touchHelper.attachToRecyclerView(mPostRecyclerView);
if (mAdapter != null) {
mAdapter.onItemSwipe(viewHolder, direction, swipeLeftAction, swipeRightAction);
}
} }
} }

View File

@ -16,7 +16,6 @@ import android.os.Build;
import android.os.Bundle; import android.os.Bundle;
import android.os.CountDownTimer; import android.os.CountDownTimer;
import android.os.Handler; import android.os.Handler;
import android.util.Log;
import android.view.HapticFeedbackConstants; import android.view.HapticFeedbackConstants;
import android.view.KeyEvent; import android.view.KeyEvent;
import android.view.LayoutInflater; import android.view.LayoutInflater;
@ -1087,9 +1086,6 @@ public class PostFragment extends Fragment implements FragmentCommunicator {
exceedThreshold = false; exceedThreshold = false;
touchHelper.attachToRecyclerView(null); touchHelper.attachToRecyclerView(null);
touchHelper.attachToRecyclerView(mPostRecyclerView); touchHelper.attachToRecyclerView(mPostRecyclerView);
if (mAdapter != null) {
mAdapter.onItemSwipe(viewHolder, direction, swipeLeftAction, swipeRightAction);
}
} }
} }

View File

@ -459,9 +459,6 @@ public class ViewPostDetailFragment extends Fragment implements FragmentCommunic
exceedThreshold = false; exceedThreshold = false;
touchHelper.attachToRecyclerView(null); touchHelper.attachToRecyclerView(null);
touchHelper.attachToRecyclerView((mCommentsRecyclerView == null ? mRecyclerView : mCommentsRecyclerView)); touchHelper.attachToRecyclerView((mCommentsRecyclerView == null ? mRecyclerView : mCommentsRecyclerView));
if (mCommentsAdapter != null) {
mCommentsAdapter.onItemSwipe(viewHolder, direction, swipeLeftAction, swipeRightAction);
}
} }
} }