From 200f5839ff3d673b1e87c4d65c984f50c90fb661 Mon Sep 17 00:00:00 2001 From: Alex Ning Date: Wed, 14 Jul 2021 20:25:26 +0800 Subject: Ignore case when searching comments. --- .../fragments/ViewPostDetailFragment.java | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'app/src/main/java/ml') diff --git a/app/src/main/java/ml/docilealligator/infinityforreddit/fragments/ViewPostDetailFragment.java b/app/src/main/java/ml/docilealligator/infinityforreddit/fragments/ViewPostDetailFragment.java index 4edf51a8..56cc7706 100644 --- a/app/src/main/java/ml/docilealligator/infinityforreddit/fragments/ViewPostDetailFragment.java +++ b/app/src/main/java/ml/docilealligator/infinityforreddit/fragments/ViewPostDetailFragment.java @@ -770,14 +770,15 @@ public class ViewPostDetailFragment extends Fragment implements FragmentCommunic if (visibleComments != null) { if (searchNextComment) { for (int i = currentSearchIndex + 1; i < visibleComments.size(); i++) { - if (visibleComments.get(i).getCommentRawText() != null && visibleComments.get(i).getCommentRawText().contains(query)) { + if (visibleComments.get(i).getCommentRawText() != null && + visibleComments.get(i).getCommentRawText().toLowerCase().contains(query.toLowerCase())) { if (mCommentsAdapter != null) { mCommentsAdapter.highlightSearchResult(i); mCommentsAdapter.notifyItemChanged(i); if (mCommentsRecyclerView == null) { - mRecyclerView.smoothScrollToPosition(i + 1); + mRecyclerView.scrollToPosition(i + 1); } else { - mCommentsRecyclerView.smoothScrollToPosition(i); + mCommentsRecyclerView.scrollToPosition(i); } } return; @@ -787,14 +788,15 @@ public class ViewPostDetailFragment extends Fragment implements FragmentCommunic return; } else { for (int i = currentSearchIndex - 1; i >= 0; i--) { - if (visibleComments.get(i).getCommentRawText() !=null && visibleComments.get(i).getCommentRawText().contains(query)) { + if (visibleComments.get(i).getCommentRawText() !=null && + visibleComments.get(i).getCommentRawText().toLowerCase().contains(query.toLowerCase())) { if (mCommentsAdapter != null) { mCommentsAdapter.highlightSearchResult(i); mCommentsAdapter.notifyItemChanged(i); if (mCommentsRecyclerView == null) { - mRecyclerView.smoothScrollToPosition(i + 1); + mRecyclerView.scrollToPosition(i + 1); } else { - mCommentsRecyclerView.smoothScrollToPosition(i); + mCommentsRecyclerView.scrollToPosition(i); } } return; -- cgit v1.2.3