aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/java/ml
diff options
context:
space:
mode:
authorAlex Ning <chineseperson5@gmail.com>2020-07-06 07:40:29 +0000
committerAlex Ning <chineseperson5@gmail.com>2020-07-06 07:40:29 +0000
commit18e38f652792d0ddf57cfa0146ed29e388b9d70c (patch)
tree127f6f5c3dd06c59632581789d448a58ec2c3382 /app/src/main/java/ml
parent4654090b314a8ffa8c9ee5d74ddf0f7b07aee2fb (diff)
downloadinfinity-for-reddit-18e38f652792d0ddf57cfa0146ed29e388b9d70c.tar
infinity-for-reddit-18e38f652792d0ddf57cfa0146ed29e388b9d70c.tar.gz
infinity-for-reddit-18e38f652792d0ddf57cfa0146ed29e388b9d70c.tar.bz2
infinity-for-reddit-18e38f652792d0ddf57cfa0146ed29e388b9d70c.tar.lz
infinity-for-reddit-18e38f652792d0ddf57cfa0146ed29e388b9d70c.tar.xz
infinity-for-reddit-18e38f652792d0ddf57cfa0146ed29e388b9d70c.tar.zst
infinity-for-reddit-18e38f652792d0ddf57cfa0146ed29e388b9d70c.zip
Add two more comments in theme preview.
Diffstat (limited to 'app/src/main/java/ml')
-rw-r--r--app/src/main/java/ml/docilealligator/infinityforreddit/Activity/ThemePreviewActivity.java26
-rw-r--r--app/src/main/java/ml/docilealligator/infinityforreddit/Adapter/CommentAndPostRecyclerViewAdapter.java2
-rw-r--r--app/src/main/java/ml/docilealligator/infinityforreddit/Fragment/ThemePreviewCommentsFragment.java63
3 files changed, 88 insertions, 3 deletions
diff --git a/app/src/main/java/ml/docilealligator/infinityforreddit/Activity/ThemePreviewActivity.java b/app/src/main/java/ml/docilealligator/infinityforreddit/Activity/ThemePreviewActivity.java
index ed20127b..79f1a8b3 100644
--- a/app/src/main/java/ml/docilealligator/infinityforreddit/Activity/ThemePreviewActivity.java
+++ b/app/src/main/java/ml/docilealligator/infinityforreddit/Activity/ThemePreviewActivity.java
@@ -33,6 +33,7 @@ import com.google.android.material.chip.Chip;
import com.google.android.material.floatingactionbutton.FloatingActionButton;
import com.google.android.material.tabs.TabLayout;
import com.r0adkll.slidr.Slidr;
+import com.r0adkll.slidr.model.SlidrInterface;
import java.util.ArrayList;
@@ -115,6 +116,7 @@ public class ThemePreviewActivity extends AppCompatActivity {
private int subscribedColor;
private int systemVisibilityToolbarExpanded = 0;
private int systemVisibilityToolbarCollapsed = 0;
+ private SlidrInterface mSlidrInterface;
@Override
protected void onCreate(Bundle savedInstanceState) {
@@ -220,7 +222,7 @@ public class ThemePreviewActivity extends AppCompatActivity {
applyCustomTheme();
if (mSharedPreferences.getBoolean(SharedPreferencesUtils.SWIPE_RIGHT_TO_GO_BACK_FROM_POST_DETAIL, true)) {
- Slidr.attach(this);
+ mSlidrInterface = Slidr.attach(this);
}
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
@@ -307,6 +309,16 @@ public class ThemePreviewActivity extends AppCompatActivity {
SectionsPagerAdapter sectionsPagerAdapter = new SectionsPagerAdapter(getSupportFragmentManager());
viewPager.setAdapter(sectionsPagerAdapter);
viewPager.setOffscreenPageLimit(2);
+ viewPager.addOnPageChangeListener(new ViewPager.SimpleOnPageChangeListener() {
+ @Override
+ public void onPageSelected(int position) {
+ if (position == 0) {
+ unlockSwipeRightToGoBack();
+ } else {
+ lockSwipeRightToGoBack();
+ }
+ }
+ });
tabLayout.setupWithViewPager(viewPager);
}
@@ -393,6 +405,18 @@ public class ThemePreviewActivity extends AppCompatActivity {
return false;
}
+ private void lockSwipeRightToGoBack() {
+ if (mSlidrInterface != null) {
+ mSlidrInterface.lock();
+ }
+ }
+
+ private void unlockSwipeRightToGoBack() {
+ if (mSlidrInterface != null) {
+ mSlidrInterface.unlock();
+ }
+ }
+
private class SectionsPagerAdapter extends FragmentPagerAdapter {
private ThemePreviewPostsFragment themePreviewPostsFragment;
private ThemePreviewCommentsFragment themePreviewCommentsFragment;
diff --git a/app/src/main/java/ml/docilealligator/infinityforreddit/Adapter/CommentAndPostRecyclerViewAdapter.java b/app/src/main/java/ml/docilealligator/infinityforreddit/Adapter/CommentAndPostRecyclerViewAdapter.java
index 9ffa7d11..1a02476c 100644
--- a/app/src/main/java/ml/docilealligator/infinityforreddit/Adapter/CommentAndPostRecyclerViewAdapter.java
+++ b/app/src/main/java/ml/docilealligator/infinityforreddit/Adapter/CommentAndPostRecyclerViewAdapter.java
@@ -3126,7 +3126,7 @@ public class CommentAndPostRecyclerViewAdapter extends RecyclerView.Adapter<Recy
TextView scoreTextView;
@BindView(R.id.time_text_view_item_comment_fully_collapsed)
TextView commentTimeTextView;
- @BindView(R.id.divider_item_load_comment_fully_collapsed)
+ @BindView(R.id.divider_item_comment_fully_collapsed)
View commentDivider;
public CommentFullyCollapsedViewHolder(@NonNull View itemView) {
diff --git a/app/src/main/java/ml/docilealligator/infinityforreddit/Fragment/ThemePreviewCommentsFragment.java b/app/src/main/java/ml/docilealligator/infinityforreddit/Fragment/ThemePreviewCommentsFragment.java
index 4a194579..bab3db01 100644
--- a/app/src/main/java/ml/docilealligator/infinityforreddit/Fragment/ThemePreviewCommentsFragment.java
+++ b/app/src/main/java/ml/docilealligator/infinityforreddit/Fragment/ThemePreviewCommentsFragment.java
@@ -10,7 +10,6 @@ import android.widget.LinearLayout;
import android.widget.TextView;
import androidx.annotation.NonNull;
-import androidx.core.widget.NestedScrollView;
import androidx.fragment.app.Fragment;
import butterknife.BindView;
@@ -54,6 +53,48 @@ public class ThemePreviewCommentsFragment extends Fragment {
ImageView replyButton;
@BindView(R.id.divider_theme_preview_comments_fragment)
View divider;
+
+ @BindView(R.id.linear_layout_award_background_theme_preview_comments_fragment)
+ LinearLayout linearLayoutAwardBackground;
+ @BindView(R.id.vertical_block_award_background_theme_preview_comments_fragment)
+ View verticalBlockAwardBackground;
+ @BindView(R.id.author_type_image_view_award_background_theme_preview_comments_fragment)
+ ImageView authorTypeImageViewAwardBackground;
+ @BindView(R.id.author_text_view_award_background_theme_preview_comments_fragment)
+ TextView authorTextViewAwardBackground;
+ @BindView(R.id.author_flair_text_view_award_background_theme_preview_comments_fragment)
+ TextView flairTextViewAwardBackground;
+ @BindView(R.id.comment_time_text_view_award_background_theme_preview_comments_fragment)
+ TextView commentTimeTextViewAwardBackground;
+ @BindView(R.id.comment_markdown_view_award_background_theme_preview_comments_fragment)
+ TextView contentTextViewAwardBackground;
+ @BindView(R.id.up_vote_button_award_background_theme_preview_comments_fragment)
+ ImageView upvoteButtonAwardBackground;
+ @BindView(R.id.score_text_view_award_background_theme_preview_comments_fragment)
+ TextView scoreTextViewAwardBackground;
+ @BindView(R.id.down_vote_button_award_background_theme_preview_comments_fragment)
+ ImageView downvoteButtonAwardBackground;
+ @BindView(R.id.more_button_award_background_theme_preview_comments_fragment)
+ ImageView moreButtonAwardBackground;
+ @BindView(R.id.expand_button_award_background_theme_preview_comments_fragment)
+ ImageView expandButtonAwardBackground;
+ @BindView(R.id.save_button_award_background_theme_preview_comments_fragment)
+ ImageView saveButtonAwardBackground;
+ @BindView(R.id.reply_button_award_background_theme_preview_comments_fragment)
+ ImageView replyButtonAwardBackground;
+ @BindView(R.id.divider_award_background_theme_preview_comments_fragment)
+ View dividerAwardBackground;
+
+ @BindView(R.id.linear_layout_fully_collapsed_theme_preview_comments_fragment)
+ LinearLayout linearLayoutFullyCollapsed;
+ @BindView(R.id.vertical_block_fully_collapsed_theme_preview_comments_fragment)
+ View verticalBlockFullyCollapsed;
+ @BindView(R.id.user_name_text_view_fully_collapsed_theme_preview_comments_fragment)
+ TextView usernameTextView;
+ @BindView(R.id.score_text_view_fully_collapsed_theme_preview_comments_fragment)
+ TextView scoreTextViewFullyCollapsed;
+ @BindView(R.id.time_text_view_fully_collapsed_theme_preview_comments_fragment)
+ TextView timeTextViewFullyCollapsed;
private ThemePreviewActivity activity;
public ThemePreviewCommentsFragment() {
@@ -82,6 +123,26 @@ public class ThemePreviewCommentsFragment extends Fragment {
expandButton.setColorFilter(customTheme.commentIconAndInfoColor, android.graphics.PorterDuff.Mode.SRC_IN);
saveButton.setColorFilter(customTheme.commentIconAndInfoColor, android.graphics.PorterDuff.Mode.SRC_IN);
replyButton.setColorFilter(customTheme.commentIconAndInfoColor, android.graphics.PorterDuff.Mode.SRC_IN);
+
+ linearLayoutAwardBackground.setBackgroundColor(customTheme.awardedCommentBackgroundColor);
+ authorTypeImageViewAwardBackground.setColorFilter(customTheme.moderator, android.graphics.PorterDuff.Mode.SRC_IN);
+ authorTextViewAwardBackground.setTextColor(customTheme.moderator);
+ commentTimeTextViewAwardBackground.setTextColor(customTheme.secondaryTextColor);
+ contentTextViewAwardBackground.setTextColor(customTheme.commentColor);
+ flairTextViewAwardBackground.setTextColor(customTheme.authorFlairTextColor);
+ dividerAwardBackground.setBackgroundColor(customTheme.dividerColor);
+ upvoteButtonAwardBackground.setColorFilter(customTheme.commentIconAndInfoColor, android.graphics.PorterDuff.Mode.SRC_IN);
+ scoreTextViewAwardBackground.setTextColor(customTheme.commentIconAndInfoColor);
+ downvoteButtonAwardBackground.setColorFilter(customTheme.commentIconAndInfoColor, android.graphics.PorterDuff.Mode.SRC_IN);
+ moreButtonAwardBackground.setColorFilter(customTheme.commentIconAndInfoColor, android.graphics.PorterDuff.Mode.SRC_IN);
+ expandButtonAwardBackground.setColorFilter(customTheme.commentIconAndInfoColor, android.graphics.PorterDuff.Mode.SRC_IN);
+ saveButtonAwardBackground.setColorFilter(customTheme.commentIconAndInfoColor, android.graphics.PorterDuff.Mode.SRC_IN);
+ replyButtonAwardBackground.setColorFilter(customTheme.commentIconAndInfoColor, android.graphics.PorterDuff.Mode.SRC_IN);
+
+ linearLayoutFullyCollapsed.setBackgroundColor(customTheme.fullyCollapsedCommentBackgroundColor);
+ usernameTextView.setTextColor(customTheme.username);
+ scoreTextView.setTextColor(customTheme.secondaryTextColor);
+ timeTextViewFullyCollapsed.setTextColor(customTheme.secondaryTextColor);
return rootView;
}