From f7969dd6008bbb3de92a1373fea1f357094b73a4 Mon Sep 17 00:00:00 2001 From: Ezerous Date: Thu, 3 Dec 2020 13:45:00 +0200 Subject: [PATCH 1/4] Reformat code/ apply styling --- app/build.gradle | 19 +- app/src/main/assets/apache_libraries.html | 124 +++-- app/src/main/assets/epl_libraries.html | 7 +- app/src/main/assets/mit_libraries.html | 13 +- app/src/main/assets/other_libraries.html | 4 +- .../mthmmy/activities/AboutActivity.java | 39 +- .../mthmmy/activities/LoginActivity.java | 13 +- .../activities/board/BoardActivity.java | 27 +- .../mthmmy/activities/board/BoardAdapter.java | 45 +- .../bookmarks/BookmarksActivity.java | 4 +- .../bookmarks/BookmarksFragment.java | 36 +- .../create_content/CreateContentActivity.java | 7 +- .../create_content/NewTopicTask.java | 3 +- .../downloads/DownloadsActivity.java | 18 +- .../downloads/DownloadsAdapter.java | 21 +- .../mthmmy/activities/main/MainActivity.java | 18 +- .../activities/main/forum/ForumFragment.java | 21 +- .../activities/main/recent/RecentAdapter.java | 7 +- .../main/recent/RecentFragment.java | 18 +- .../activities/main/unread/UnreadAdapter.java | 7 +- .../main/unread/UnreadFragment.java | 64 +-- .../activities/profile/ProfileActivity.java | 32 +- .../latestPosts/LatestPostsAdapter.java | 8 +- .../latestPosts/LatestPostsFragment.java | 11 +- .../profile/stats/StatsFragment.java | 18 +- .../profile/summary/SummaryFragment.java | 14 +- .../activities/settings/SettingsActivity.java | 2 +- .../activities/settings/SettingsFragment.java | 49 +- .../activities/shoutbox/SendShoutTask.java | 1 - .../activities/shoutbox/ShoutAdapter.java | 9 +- .../activities/shoutbox/ShoutboxActivity.java | 3 +- .../activities/shoutbox/ShoutboxFragment.java | 12 +- .../mthmmy/activities/topic/Posting.java | 2 +- .../activities/topic/TopicActivity.java | 76 ++- .../mthmmy/activities/topic/TopicAdapter.java | 126 +++-- .../mthmmy/activities/topic/TopicParser.java | 41 +- .../activities/topic/tasks/EditTask.java | 1 + .../topic/tasks/PrepareForEditTask.java | 1 + .../topic/tasks/PrepareForReplyTask.java | 5 +- .../activities/topic/tasks/ReplyTask.java | 1 + .../activities/topic/tasks/TopicTask.java | 4 +- .../activities/upload/UploadActivity.java | 111 ++-- .../upload/UploadFieldsBuilderActivity.java | 18 +- .../activities/upload/UploadsCourse.java | 14 +- .../activities/upload/UploadsHelper.java | 4 +- .../multipart/MultipartUploadRequest.java | 10 +- .../upload/multipart/MultipartUploadTask.java | 8 +- .../gr/thmmy/mthmmy/base/BaseActivity.java | 74 ++- .../gr/thmmy/mthmmy/base/BaseApplication.java | 22 +- .../gr/thmmy/mthmmy/base/BaseFragment.java | 3 +- .../java/gr/thmmy/mthmmy/model/Bookmark.java | 2 +- .../java/gr/thmmy/mthmmy/model/Download.java | 4 +- .../main/java/gr/thmmy/mthmmy/model/Poll.java | 3 +- .../main/java/gr/thmmy/mthmmy/model/Post.java | 6 +- .../thmmy/mthmmy/model/PostNotification.java | 12 +- .../java/gr/thmmy/mthmmy/model/ThmmyFile.java | 2 +- .../java/gr/thmmy/mthmmy/model/ThmmyPage.java | 11 +- .../thmmy/mthmmy/services/DownloadHelper.java | 9 +- .../mthmmy/services/NotificationService.java | 43 +- .../mthmmy/services/UploadsReceiver.java | 17 +- .../session/InvalidSessionException.java | 3 +- .../gr/thmmy/mthmmy/session/LogoutTask.java | 8 +- .../thmmy/mthmmy/session/MarkAsReadTask.java | 8 +- .../thmmy/mthmmy/session/SessionManager.java | 26 +- .../gr/thmmy/mthmmy/utils/DateTimeUtils.java | 56 +- .../thmmy/mthmmy/utils/ExternalAsyncTask.java | 5 +- .../java/gr/thmmy/mthmmy/utils/FileUtils.java | 3 +- .../java/gr/thmmy/mthmmy/utils/HTMLUtils.java | 12 +- .../gr/thmmy/mthmmy/utils/LaunchType.java | 6 +- .../java/gr/thmmy/mthmmy/utils/TakePhoto.java | 2 +- .../utils/crashreporting/CrashReporter.java | 3 +- .../crashreporting/CrashReportingTree.java | 9 +- .../mthmmy/utils/networking/NetworkTask.java | 5 +- .../mthmmy/utils/parsing/NewParseTask.java | 5 +- .../mthmmy/utils/parsing/ParseException.java | 3 +- .../mthmmy/utils/parsing/ParseHelpers.java | 7 +- .../thmmy/mthmmy/utils/parsing/ParseTask.java | 7 +- .../utils/parsing/ThmmyDateTimeParser.java | 41 +- .../mthmmy/utils/parsing/ThmmyParser.java | 6 +- .../mthmmy/utils/ui/CenterVerticalSpan.java | 2 +- .../utils/ui/ImageDownloadDialogBuilder.java | 10 +- .../utils/ui/ScrollAwareFABBehavior.java | 3 +- .../utils/ui/ScrollAwareLinearBehavior.java | 3 +- .../mthmmy/viewmodel/ShoutboxViewModel.java | 3 +- .../mthmmy/viewmodel/TopicViewModel.java | 32 +- .../thmmy/mthmmy/views/ReactiveWebView.java | 22 +- .../mthmmy/views/RelativeTimeTextView.java | 16 +- .../mthmmy/views/ToggledBackgroundButton.java | 1 + .../mthmmy/views/editorview/EditorView.java | 495 +++++++++--------- .../views/editorview/EmojiInputField.java | 1 + .../editorview/FormatButtonsAdapter.java | 9 +- .../views/editorview/IEmojiKeyboard.java | 4 + app/src/main/res/anim/push_left_in.xml | 2 +- app/src/main/res/anim/push_left_out.xml | 2 +- app/src/main/res/anim/push_right_in.xml | 2 +- app/src/main/res/anim/push_right_out.xml | 2 +- .../res/drawable/guest_button_border_bg.xml | 8 +- .../drawable/ic_access_time_white_24dp.xml | 13 +- app/src/main/res/drawable/ic_add_fab.xml | 10 +- app/src/main/res/drawable/ic_announcement.xml | 13 +- .../ic_arrow_drop_down_accent_24dp.xml | 13 +- .../drawable/ic_arrow_drop_up_accent_24dp.xml | 13 +- .../res/drawable/ic_backspace_black_24dp.xml | 13 +- .../ic_bookmark_false_accent_24dp.xml | 13 +- .../drawable/ic_bookmark_true_accent_24dp.xml | 13 +- .../res/drawable/ic_cached_accent_24dp.xml | 10 +- .../res/drawable/ic_cancel_accent_24dp.xml | 10 +- app/src/main/res/drawable/ic_code.xml | 13 +- .../res/drawable/ic_default_user_avatar.xml | 15 +- .../ic_default_user_avatar_darker.xml | 15 +- .../res/drawable/ic_delete_accent_24dp.xml | 13 +- .../res/drawable/ic_delete_white_24dp.xml | 13 +- .../main/res/drawable/ic_edit_white_24dp.xml | 13 +- .../res/drawable/ic_fiber_new_white_24dp.xml | 13 +- .../main/res/drawable/ic_file_not_found.xml | 13 +- .../drawable/ic_file_upload_white_24dp.xml | 13 +- .../res/drawable/ic_format_align_center.xml | 13 +- .../res/drawable/ic_format_align_left.xml | 13 +- .../res/drawable/ic_format_align_right.xml | 13 +- app/src/main/res/drawable/ic_format_bold.xml | 10 +- .../res/drawable/ic_format_color_text.xml | 15 +- .../main/res/drawable/ic_format_italic.xml | 11 +- .../res/drawable/ic_format_list_bulleted.xml | 13 +- app/src/main/res/drawable/ic_format_quote.xml | 13 +- .../ic_format_quote_checked_accent_24dp.xml | 13 +- .../ic_format_quote_unchecked_24dp.xml | 13 +- app/src/main/res/drawable/ic_format_size.xml | 13 +- .../res/drawable/ic_format_underlined.xml | 13 +- .../main/res/drawable/ic_forum_white_24dp.xml | 13 +- app/src/main/res/drawable/ic_functions.xml | 13 +- .../drawable/ic_info_outline_warning_24dp.xml | 10 +- .../drawable/ic_info_outline_white_24dp.xml | 13 +- .../ic_insert_drive_file_white_24dp.xml | 13 +- app/src/main/res/drawable/ic_insert_link.xml | 13 +- .../main/res/drawable/ic_keyboard_24dp.xml | 13 +- .../res/drawable/ic_launcher_foreground.xml | 28 +- app/src/main/res/drawable/ic_mark_as_read.xml | 13 +- .../res/drawable/ic_more_vert_white_24dp.xml | 13 +- .../main/res/drawable/ic_notification_off.xml | 10 +- .../main/res/drawable/ic_notification_on.xml | 10 +- .../drawable/ic_photo_camera_white_24dp.xml | 14 +- app/src/main/res/drawable/ic_pm_fab.xml | 10 +- .../res/drawable/ic_refresh_white_24dp.xml | 13 +- app/src/main/res/drawable/ic_reply.xml | 10 +- .../main/res/drawable/ic_send_accent_24dp.xml | 13 +- .../main/res/drawable/ic_share_white_24dp.xml | 13 +- .../main/res/drawable/ic_strikethrough_s.xml | 13 +- .../main/res/drawable/ic_tag_faces_24dp.xml | 13 +- app/src/main/res/drawable/ic_text_format.xml | 13 +- .../main/res/drawable/line_chart_gradient.xml | 5 +- app/src/main/res/drawable/login_button_bg.xml | 6 +- .../res/drawable/member_of_the_month_card.xml | 8 +- app/src/main/res/drawable/mention_card.xml | 8 +- app/src/main/res/drawable/page_first.xml | 12 +- app/src/main/res/drawable/page_last.xml | 12 +- app/src/main/res/drawable/page_next.xml | 12 +- app/src/main/res/drawable/page_previous.xml | 12 +- app/src/main/res/drawable/progress_bar_bg.xml | 13 +- .../main/res/layout-v21/activity_profile.xml | 17 +- .../layout-v21/activity_topic_post_row.xml | 1 + app/src/main/res/layout/activity_about.xml | 2 +- .../layout/activity_board_sub_board_row.xml | 2 +- .../res/layout/activity_board_topic_row.xml | 2 +- .../main/res/layout/activity_bookmarks.xml | 12 +- .../res/layout/activity_create_content.xml | 10 +- .../main/res/layout/activity_downloads.xml | 13 +- .../res/layout/activity_downloads_row.xml | 13 +- app/src/main/res/layout/activity_login.xml | 33 +- app/src/main/res/layout/activity_main.xml | 6 +- app/src/main/res/layout/activity_profile.xml | 17 +- .../res/layout/activity_topic_edit_row.xml | 1 + .../main/res/layout/activity_topic_poll.xml | 13 +- .../res/layout/activity_topic_post_row.xml | 3 +- .../layout/activity_topic_quick_reply_row.xml | 1 + .../main/res/layout/dialog_create_link.xml | 5 +- app/src/main/res/layout/dialog_licenses.xml | 6 +- app/src/main/res/layout/dialog_topic_info.xml | 16 +- app/src/main/res/layout/editor_view.xml | 6 +- app/src/main/res/layout/emoji_keyboard.xml | 2 +- .../res/layout/emoji_keyboard_grid_cell.xml | 5 +- .../res/layout/format_button_grid_cell.xml | 3 +- .../main/res/layout/fragment_bookmarks.xml | 12 +- .../res/layout/fragment_bookmarks_row.xml | 9 +- app/src/main/res/layout/fragment_forum.xml | 5 +- .../layout/fragment_forum_category_row.xml | 2 +- .../layout/fragment_profile_latest_posts.xml | 8 +- ...ent_profile_latest_posts_empty_message.xml | 5 +- .../fragment_profile_latest_posts_row.xml | 14 +- .../res/layout/fragment_profile_stats.xml | 19 +- .../res/layout/fragment_profile_summary.xml | 6 +- app/src/main/res/layout/fragment_recent.xml | 7 +- .../main/res/layout/fragment_recent_row.xml | 11 +- app/src/main/res/layout/fragment_shoutbox.xml | 2 +- app/src/main/res/layout/fragment_unread.xml | 2 +- .../main/res/layout/fragment_unread_row.xml | 11 +- .../main/res/layout/recycler_loading_item.xml | 5 +- app/src/main/res/menu/downloads_menu.xml | 3 +- app/src/main/res/menu/shoutbox_menu.xml | 3 +- app/src/main/res/menu/topic_menu.xml | 11 +- .../res/mipmap-anydpi-v26/ic_launcher.xml | 4 +- .../mipmap-anydpi-v26/ic_launcher_round.xml | 4 +- app/src/main/res/values-v21/styles.xml | 1 + app/src/main/res/values/attrs.xml | 2 +- app/src/main/res/values/styles.xml | 4 +- app/src/main/res/xml/app_preferences_user.xml | 2 +- app/src/main/res/xml/provider_paths.xml | 4 +- .../thmmy/mthmmy/utils/DateTimeUtilsTest.java | 16 +- .../parsing/ThmmyDateTimeParserTest.java | 88 ++-- styling.xml | 135 +++++ 209 files changed, 2069 insertions(+), 1408 deletions(-) create mode 100644 styling.xml diff --git a/app/build.gradle b/app/build.gradle index 0c95158c..66fd4c43 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -53,23 +53,21 @@ tasks.whenTaskAdded { task -> if (task.name.contains("assembleRelease")) { task.getDependsOn().add({ def googleServicesFile = new File("app/src/release/google-services.json") - if(googleServicesFile.exists()){ + if (googleServicesFile.exists()) { def json = new JsonSlurper().parseText(googleServicesFile.text) if (json.project_info.project_id != firebaseReleaseProjectId) throw new GradleException('Please supply the correct google-services.json for release in app/src/release/ directory!') - } - else + } else throw new GradleException('Please add the release google-services.json in app/src/release/ directory!') }) } else if (task.name.contains("assembleDebug")) { task.getDependsOn().add({ def googleServicesFile = new File("app/src/debug/google-services.json") - if(googleServicesFile.exists()){ + if (googleServicesFile.exists()) { def json = new JsonSlurper().parseText(googleServicesFile.text) if (json.project_info.project_id == firebaseReleaseProjectId) throw new GradleException('Please replace google-services.json in app/src/debug/ with a debug one!') - } - else + } else throw new GradleException('Please add a debug google-services.json in app/src/debug/ directory!') }) } @@ -93,7 +91,8 @@ dependencies { implementation 'com.google.firebase:firebase-crashlytics:17.1.1' implementation 'com.google.firebase:firebase-messaging:20.2.4' implementation 'com.snatik:storage:2.1.0' - implementation ('com.squareup.okhttp3:okhttp:3.12.12') { //TODO: Warning: OkHttp has dropped support for Android 19 since OkHttp 3.13! + implementation('com.squareup.okhttp3:okhttp:3.12.12') { + //TODO: Warning: OkHttp has dropped support for Android 19 since OkHttp 3.13! force = true //TODO: Remove when minSdkVersion >= 21 } implementation 'org.jsoup:jsoup:1.13.1' @@ -109,8 +108,10 @@ dependencies { implementation 'com.jakewharton.timber:timber:4.7.1' implementation 'ru.noties:markwon:2.0.2' implementation 'net.gotev:uploadservice:3.5.2' - implementation 'net.gotev:uploadservice-okhttp:3.4.2' //TODO: Warning: v.3.5 depends on okhttp 3.13! - implementation 'com.itkacher.okhttpprofiler:okhttpprofiler:1.0.7' //Plugin: https://plugins.jetbrains.com/plugin/11249-okhttp-profiler + implementation 'net.gotev:uploadservice-okhttp:3.4.2' + //TODO: Warning: v.3.5 depends on okhttp 3.13! + implementation 'com.itkacher.okhttpprofiler:okhttpprofiler:1.0.7' + //Plugin: https://plugins.jetbrains.com/plugin/11249-okhttp-profiler implementation 'com.github.bumptech.glide:glide:4.11.0' annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0' testImplementation 'junit:junit:4.12' diff --git a/app/src/main/assets/apache_libraries.html b/app/src/main/assets/apache_libraries.html index ef777771..2d6e23cb 100644 --- a/app/src/main/assets/apache_libraries.html +++ b/app/src/main/assets/apache_libraries.html @@ -1,60 +1,72 @@ - + - - - - -
+
+
+
+
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
 You may obtain a copy of the License at
@@ -67,9 +79,9 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.
 
-
-

Apache License v2.0

-
+
+

Apache License v2.0

+
 Apache License
 
 Version 2.0, January 2004
@@ -125,6 +137,6 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
 
 END OF TERMS AND CONDITIONS
 
- + diff --git a/app/src/main/assets/epl_libraries.html b/app/src/main/assets/epl_libraries.html index 23802d2c..2dbe28e0 100644 --- a/app/src/main/assets/epl_libraries.html +++ b/app/src/main/assets/epl_libraries.html @@ -1,19 +1,20 @@ - +
  • -
    JUnit v4.12 (Copyright © 2002-2019, JUnit)
    +
    JUnit v4.12 (Copyright © + 2002-2019, JUnit)

Eclipse Public License v1.0

-
+
 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC
 LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM
 CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
diff --git a/app/src/main/assets/mit_libraries.html b/app/src/main/assets/mit_libraries.html
index 33083150..59344819 100644
--- a/app/src/main/assets/mit_libraries.html
+++ b/app/src/main/assets/mit_libraries.html
@@ -1,25 +1,28 @@
 
 
-    
+    
 
 
 
 
 
 
 

The MIT License

-
+
   Copyright <YEAR> <COPYRIGHT HOLDER>
 
   Permission is hereby granted, free of charge, to any person obtaining a copy
diff --git a/app/src/main/assets/other_libraries.html b/app/src/main/assets/other_libraries.html
index 59b89569..53cfb0bf 100644
--- a/app/src/main/assets/other_libraries.html
+++ b/app/src/main/assets/other_libraries.html
@@ -1,6 +1,6 @@
 
 
-    
+    
 
 
 
@@ -13,7 +13,7 @@
 
 

Glide License

-
+
 License for everything not in third_party and not otherwise marked:
 
 Copyright 2014 Google, Inc. All rights reserved.
diff --git a/app/src/main/java/gr/thmmy/mthmmy/activities/AboutActivity.java b/app/src/main/java/gr/thmmy/mthmmy/activities/AboutActivity.java
index 54127dd5..70316810 100644
--- a/app/src/main/java/gr/thmmy/mthmmy/activities/AboutActivity.java
+++ b/app/src/main/java/gr/thmmy/mthmmy/activities/AboutActivity.java
@@ -58,7 +58,7 @@ public class AboutActivity extends BaseActivity {
             gitExists = false;
 
         String versionInfo = "";
-        if(gitExists)
+        if (gitExists)
             versionInfo = "-" + BuildConfig.CURRENT_BRANCH + "-" + commitHash
                     + (BuildConfig.IS_CLEAN ? "" : "-dirty")
                     + " ";  // Avoid last letter being cut in italics styled TextView
@@ -89,7 +89,8 @@ public class AboutActivity extends BaseActivity {
                     showEasterEgg();
                 mVersionLastPressedTime = System.currentTimeMillis();
                 ++mVersionPressedCounter;
-            } else {
+            }
+            else {
                 mVersionLastPressedTime = System.currentTimeMillis();
                 mVersionPressedCounter = 0;
             }
@@ -102,7 +103,7 @@ public class AboutActivity extends BaseActivity {
             else
                 versionTextView.setText(getString(R.string.version, versionName));
 
-            if(gitExists){
+            if (gitExists) {
                 versionTextView.setOnClickListener(view -> {
                     Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://github.com/ThmmyNoLife/mTHMMY/commit/" + BuildConfig.COMMIT_HASH));
                     startActivity(intent);
@@ -132,7 +133,7 @@ public class AboutActivity extends BaseActivity {
 
     @Override
     public void onBackPressed() {
-        if(easterEggImage.getVisibility()==View.INVISIBLE)
+        if (easterEggImage.getVisibility() == View.INVISIBLE)
             super.onBackPressed();
         else
             hideEasterEgg();
@@ -140,29 +141,29 @@ public class AboutActivity extends BaseActivity {
 
     public void displayLibraries(View v) {
         String libraryType = v.getTag().toString();
-        String title="", fileName="";
-        switch(libraryType) {
+        String title = "", fileName = "";
+        switch (libraryType) {
             case "APACHE":
-                title=getString(R.string.apache_v2_0_libraries);
-                fileName="apache_libraries.html";
+                title = getString(R.string.apache_v2_0_libraries);
+                fileName = "apache_libraries.html";
                 break;
             case "MIT":
-                title=getString(R.string.the_mit_libraries);
-                fileName="mit_libraries.html";
+                title = getString(R.string.the_mit_libraries);
+                fileName = "mit_libraries.html";
                 break;
             case "EPL":
-                title=getString(R.string.epl_libraries);
-                fileName="epl_libraries.html";
+                title = getString(R.string.epl_libraries);
+                fileName = "epl_libraries.html";
                 break;
             case "OTHER":
-                title=getString(R.string.other_libraries);
-                fileName="other_libraries.html";
+                title = getString(R.string.other_libraries);
+                fileName = "other_libraries.html";
                 break;
             default:
                 break;
         }
 
-        String htmlContent = AssetUtils.readFileToText(this,fileName);
+        String htmlContent = AssetUtils.readFileToText(this, fileName);
 
         LayoutInflater inflater = LayoutInflater.from(this);
         WebView webView = (WebView) inflater.inflate(R.layout.dialog_licenses, coordinatorLayout, false);
@@ -176,13 +177,13 @@ public class AboutActivity extends BaseActivity {
                 .setView(webView)
                 .setPositiveButton(android.R.string.ok, null)
                 .show();
-        if(alertDialog.getWindow()!=null)
+        if (alertDialog.getWindow() != null)
             alertDialog.getWindow().setLayout(width, height);
     }
 
     @SuppressLint("SourceLockedOrientationActivity")
-    private void showEasterEgg(){
-        if(getResources().getConfiguration().orientation==ActivityInfo.SCREEN_ORIENTATION_PORTRAIT){
+    private void showEasterEgg() {
+        if (getResources().getConfiguration().orientation == ActivityInfo.SCREEN_ORIENTATION_PORTRAIT) {
             setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);  //TODO: why?
             appBar.setVisibility(View.INVISIBLE);
             mainContent.setVisibility(View.INVISIBLE);
@@ -191,7 +192,7 @@ public class AboutActivity extends BaseActivity {
         }
     }
 
-    private void hideEasterEgg(){
+    private void hideEasterEgg() {
         appBar.setVisibility(View.VISIBLE);
         mainContent.setVisibility(View.VISIBLE);
         easterEggImage.setVisibility(View.INVISIBLE);
diff --git a/app/src/main/java/gr/thmmy/mthmmy/activities/LoginActivity.java b/app/src/main/java/gr/thmmy/mthmmy/activities/LoginActivity.java
index f3304276..bd75f6d5 100644
--- a/app/src/main/java/gr/thmmy/mthmmy/activities/LoginActivity.java
+++ b/app/src/main/java/gr/thmmy/mthmmy/activities/LoginActivity.java
@@ -100,7 +100,7 @@ public class LoginActivity extends BaseActivity {
         if (loginTask != null && loginTask.getStatus() == AsyncTask.Status.RUNNING) {
             loginTask.cancel(true);
         }
-        if(!isTaskRoot())
+        if (!isTaskRoot())
             overridePendingTransition(R.anim.push_left_in, R.anim.push_left_out);
     }
 
@@ -117,7 +117,8 @@ public class LoginActivity extends BaseActivity {
             inputUsername.setError("Enter a valid username");
             inputUsername.requestFocus();
             valid = false;
-        } else {
+        }
+        else {
             inputUsername.setError(null);
         }
 
@@ -126,7 +127,8 @@ public class LoginActivity extends BaseActivity {
             if (valid)
                 inputPassword.requestFocus();
             valid = false;
-        } else {
+        }
+        else {
             inputPassword.setError(null);
         }
 
@@ -170,10 +172,11 @@ public class LoginActivity extends BaseActivity {
                             "Welcome, " + sessionManager.getUsername() + "!", Toast.LENGTH_LONG)
                             .show();
                     BaseApplication.getInstance().logFirebaseAnalyticsEvent(FirebaseAnalytics.Event.LOGIN, null);
-                    if(initialRedirect){
+                    if (initialRedirect) {
                         Intent intent = new Intent(LoginActivity.this, MainActivity.class);
                         startActivity(intent);
-                    } else
+                    }
+                    else
                         onBackPressed();
 
                     finish();
diff --git a/app/src/main/java/gr/thmmy/mthmmy/activities/board/BoardActivity.java b/app/src/main/java/gr/thmmy/mthmmy/activities/board/BoardActivity.java
index 76d15b4f..8c9820cb 100644
--- a/app/src/main/java/gr/thmmy/mthmmy/activities/board/BoardActivity.java
+++ b/app/src/main/java/gr/thmmy/mthmmy/activities/board/BoardActivity.java
@@ -116,7 +116,8 @@ public class BoardActivity extends BaseActivity implements BoardAdapter.OnLoadMo
                         intent.putExtra(CreateContentActivity.EXTRA_NEW_TOPIC_URL, newTopicUrl);
                         startActivity(intent);
                     }
-                } else {
+                }
+                else {
                     new AlertDialog.Builder(BoardActivity.this)
                             .setMessage("You need to be logged in to create a new topic!")
                             .setPositiveButton("Login", (dialogInterface, i) -> {
@@ -234,7 +235,7 @@ public class BoardActivity extends BaseActivity implements BoardAdapter.OnLoadMo
 
             final Pattern pLastPostPattern = Pattern.compile("((?:(?!(?:by|από)).)*)\\s(?:by|από)\\s(.*)");
 
-            if(pagesLoaded == 0) { //Finds sub boards
+            if (pagesLoaded == 0) { //Finds sub boards
                 Elements subBoardRows = boardPage.select("div.tborder>table>tbody>tr");
                 if (subBoardRows != null && !subBoardRows.isEmpty()) {
                     for (Element subBoardRow : subBoardRows) {
@@ -244,9 +245,9 @@ public class BoardActivity extends BaseActivity implements BoardAdapter.OnLoadMo
                             boolean parsingFailed = false;
                             Elements subBoardColumns = subBoardRow.select(">td");
                             for (Element subBoardCol : subBoardColumns) {
-                                if (Objects.equals(subBoardCol.className(), "windowbg")){
+                                if (Objects.equals(subBoardCol.className(), "windowbg")) {
                                     pStats = subBoardCol.text();
-                                    if(pStats.equals("--"))
+                                    if (pStats.equals("--"))
                                         pStats = "";
                                 }
 
@@ -255,7 +256,7 @@ public class BoardActivity extends BaseActivity implements BoardAdapter.OnLoadMo
                                     if (pLastPost.contains(" in ") || pLastPost.contains(" σε ")) {
                                         Pattern pattern = Pattern.compile("(?:Last post on |Τελευταίο μήνυμα στις )((?:(?!(?:in|σε)).)*)\\s(?:in|σε)\\s.*");
                                         Matcher matcher = pattern.matcher(pLastPost);
-                                        if (matcher.find()){
+                                        if (matcher.find()) {
                                             String pLastPostDateTime = matcher.group(1);
                                             String pSubject = subBoardCol.select("a").first().attr("title");
 
@@ -272,7 +273,7 @@ public class BoardActivity extends BaseActivity implements BoardAdapter.OnLoadMo
                                                 break;
                                             }
 
-                                            pLastPost = "Last post on: " + pLastPostDateTime + "\nin: " + pSubject + "\nby " +pLastUser;
+                                            pLastPost = "Last post on: " + pLastPostDateTime + "\nin: " + pSubject + "\nby " + pLastUser;
 
                                             pLastPostUrl = subBoardCol.select("a").first().attr("href");
                                         }
@@ -281,18 +282,20 @@ public class BoardActivity extends BaseActivity implements BoardAdapter.OnLoadMo
                                             break;
                                         }
 
-                                    } else if (pLastPost.contains("redirected clicks")||pLastPost.contains("N/A"))
+                                    }
+                                    else if (pLastPost.contains("redirected clicks") || pLastPost.contains("N/A"))
                                         pLastPost = "";
                                     else
                                         pLastPost = "No posts yet";
-                                } else {
+                                }
+                                else {
                                     pUrl = subBoardCol.select("a").first().attr("href");
                                     pTitle = subBoardCol.select("a").first().text();
                                     if (subBoardCol.select("div.smalltext").first() != null)
                                         pMods = subBoardCol.select("div.smalltext").first().text();
                                 }
                             }
-                            if(!parsingFailed)
+                            if (!parsingFailed)
                                 tempSubBoards.add(new Board(pUrl, pTitle, pMods, pStats, pLastPost, pLastPostUrl));
                             else
                                 Timber.e("Parsing failed (pLastPost came with: \"%s\", subBoardColumns html was \"%s\")", pLastPost, subBoardColumns);
@@ -305,7 +308,7 @@ public class BoardActivity extends BaseActivity implements BoardAdapter.OnLoadMo
             if (topicRows != null && !topicRows.isEmpty()) {
                 for (Element topicRow : topicRows) {
                     if (!Objects.equals(topicRow.className(), "titlebg")) {
-                        String pTopicUrl, pSubject, pStarter, pLastUser="", pLastPostDateTime="00:00:00", pLastPost, pLastPostUrl, pStats;
+                        String pTopicUrl, pSubject, pStarter, pLastUser = "", pLastPostDateTime = "00:00:00", pLastPost, pLastPostUrl, pStats;
                         boolean pLocked = false, pSticky = false, pUnread = false;
                         Elements topicColumns = topicRow.select(">td");
 
@@ -325,11 +328,11 @@ public class BoardActivity extends BaseActivity implements BoardAdapter.OnLoadMo
 
                         pLastPost = topicColumns.get(6).text();
                         Matcher matcher = pLastPostPattern.matcher(pLastPost);
-                        if (matcher.find()){
+                        if (matcher.find()) {
                             pLastPostDateTime = matcher.group(1);
                             pLastUser = matcher.group(2);
                         }
-                        else{
+                        else {
                             Timber.e("Parsing failed (pLastPost came with: \"%s\", topicColumns html was \"%s\")", pLastPost, topicColumns);
                             continue;
                         }
diff --git a/app/src/main/java/gr/thmmy/mthmmy/activities/board/BoardAdapter.java b/app/src/main/java/gr/thmmy/mthmmy/activities/board/BoardAdapter.java
index 0a697706..3594fe79 100644
--- a/app/src/main/java/gr/thmmy/mthmmy/activities/board/BoardAdapter.java
+++ b/app/src/main/java/gr/thmmy/mthmmy/activities/board/BoardAdapter.java
@@ -59,7 +59,8 @@ class BoardAdapter extends RecyclerView.Adapter {
         if (position <= parsedSubBoards.size()) {
             if (position == 0) return VIEW_TYPE_SUB_BOARD_TITLE;
             return VIEW_TYPE_SUB_BOARD;
-        } else if (position <= parsedSubBoards.size() + parsedTopics.size() + 1) {
+        }
+        else if (position <= parsedSubBoards.size() + parsedTopics.size() + 1) {
             if (position == parsedSubBoards.size() + 1) return VIEW_TYPE_TOPIC_TITLE;
             if (parsedTopics.get(position - parsedSubBoards.size() - 1 - 1) != null)
                 return VIEW_TYPE_TOPIC;
@@ -79,7 +80,8 @@ class BoardAdapter extends RecyclerView.Adapter {
             if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
                 subBoardTitle.setBackgroundColor(context.getColor(R.color.background_light));
                 subBoardTitle.setTextColor(context.getColor(R.color.accent));
-            } else {
+            }
+            else {
                 //noinspection deprecation
                 subBoardTitle.setBackgroundColor(context.getResources().getColor(R.color.background_light));
                 //noinspection deprecation
@@ -89,11 +91,13 @@ class BoardAdapter extends RecyclerView.Adapter {
             subBoardTitle.setTextSize(20f);
 
             return new TitlesViewHolder(subBoardTitle);
-        } else if (viewType == VIEW_TYPE_SUB_BOARD) {
+        }
+        else if (viewType == VIEW_TYPE_SUB_BOARD) {
             View subBoard = LayoutInflater.from(parent.getContext()).
                     inflate(R.layout.activity_board_sub_board_row, parent, false);
             return new SubBoardViewHolder(subBoard);
-        } else if (viewType == VIEW_TYPE_TOPIC_TITLE) {
+        }
+        else if (viewType == VIEW_TYPE_TOPIC_TITLE) {
             TextView topicTitle = new TextView(context);
             topicTitle.setLayoutParams(new LinearLayout.LayoutParams(
                     LinearLayout.LayoutParams.MATCH_PARENT
@@ -102,7 +106,8 @@ class BoardAdapter extends RecyclerView.Adapter {
             topicTitle.setTypeface(topicTitle.getTypeface(), Typeface.BOLD);
             if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
                 topicTitle.setTextColor(context.getColor(R.color.primary_text));
-            } else {
+            }
+            else {
                 //noinspection deprecation
                 topicTitle.setTextColor(context.getResources().getColor(R.color.primary_text));
             }
@@ -110,11 +115,13 @@ class BoardAdapter extends RecyclerView.Adapter {
             topicTitle.setTextSize(20f);
 
             return new TitlesViewHolder(topicTitle);
-        } else if (viewType == VIEW_TYPE_TOPIC) {
+        }
+        else if (viewType == VIEW_TYPE_TOPIC) {
             View topic = LayoutInflater.from(parent.getContext()).
                     inflate(R.layout.activity_board_topic_row, parent, false);
             return new TopicViewHolder(topic);
-        } else if (viewType == VIEW_TYPE_LOADING) {
+        }
+        else if (viewType == VIEW_TYPE_LOADING) {
             View loading = LayoutInflater.from(parent.getContext()).
                     inflate(R.layout.recycler_loading_item, parent, false);
             return new LoadingViewHolder(loading);
@@ -145,7 +152,8 @@ class BoardAdapter extends RecyclerView.Adapter {
             if (boardExpandableVisibility.get(subBoardViewHolder.getAdapterPosition() - 1)) {
                 subBoardViewHolder.boardExpandable.setVisibility(View.VISIBLE);
                 subBoardViewHolder.showHideExpandable.setImageResource(R.drawable.ic_arrow_drop_up_accent_24dp);
-            } else {
+            }
+            else {
                 subBoardViewHolder.boardExpandable.setVisibility(View.GONE);
                 subBoardViewHolder.showHideExpandable.setImageResource(R.drawable.ic_arrow_drop_down_accent_24dp);
             }
@@ -154,7 +162,8 @@ class BoardAdapter extends RecyclerView.Adapter {
                 if (visible) {
                     subBoardViewHolder.boardExpandable.setVisibility(View.GONE);
                     subBoardViewHolder.showHideExpandable.setImageResource(R.drawable.ic_arrow_drop_down_accent_24dp);
-                } else {
+                }
+                else {
                     subBoardViewHolder.boardExpandable.setVisibility(View.VISIBLE);
                     subBoardViewHolder.showHideExpandable.setImageResource(R.drawable.ic_arrow_drop_up_accent_24dp);
                 }
@@ -165,17 +174,17 @@ class BoardAdapter extends RecyclerView.Adapter {
             String stats = subBoard.getStats();
             String lastPost = subBoard.getLastPost();
 
-            if(!mods.isEmpty()){
+            if (!mods.isEmpty()) {
                 subBoardViewHolder.boardMods.setText(mods);
                 subBoardViewHolder.boardMods.setVisibility(View.VISIBLE);
             }
 
-            if(!stats.isEmpty()){
+            if (!stats.isEmpty()) {
                 subBoardViewHolder.boardStats.setText(stats);
                 subBoardViewHolder.boardStats.setVisibility(View.VISIBLE);
             }
 
-            if(!lastPost.isEmpty()){
+            if (!lastPost.isEmpty()) {
                 subBoardViewHolder.boardLastPost.setText(lastPost);
                 subBoardViewHolder.boardLastPost.setVisibility(View.VISIBLE);
             }
@@ -191,7 +200,8 @@ class BoardAdapter extends RecyclerView.Adapter {
                     context.startActivity(intent);
                 });
             }
-        } else if (holder instanceof TopicViewHolder) {
+        }
+        else if (holder instanceof TopicViewHolder) {
             final Topic topic = parsedTopics.get(position - parsedSubBoards.size() - 1 - 1);
             final TopicViewHolder topicViewHolder = (TopicViewHolder) holder;
 
@@ -213,7 +223,8 @@ class BoardAdapter extends RecyclerView.Adapter {
                     .size() - 2)) {
                 topicViewHolder.topicExpandable.setVisibility(View.VISIBLE);
                 topicViewHolder.showHideExpandable.setImageResource(R.drawable.ic_arrow_drop_up_accent_24dp);
-            } else {
+            }
+            else {
                 topicViewHolder.topicExpandable.setVisibility(View.GONE);
                 topicViewHolder.showHideExpandable.setImageResource(R.drawable.ic_arrow_drop_down_accent_24dp);
             }
@@ -223,7 +234,8 @@ class BoardAdapter extends RecyclerView.Adapter {
                 if (visible) {
                     topicViewHolder.topicExpandable.setVisibility(View.GONE);
                     topicViewHolder.showHideExpandable.setImageResource(R.drawable.ic_arrow_drop_down_accent_24dp);
-                } else {
+                }
+                else {
                     topicViewHolder.topicExpandable.setVisibility(View.VISIBLE);
                     topicViewHolder.showHideExpandable.setImageResource(R.drawable.ic_arrow_drop_up_accent_24dp);
                 }
@@ -258,7 +270,8 @@ class BoardAdapter extends RecyclerView.Adapter {
                 intent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
                 context.startActivity(intent);
             });
-        } else if (holder instanceof LoadingViewHolder) {
+        }
+        else if (holder instanceof LoadingViewHolder) {
             LoadingViewHolder loadingViewHolder = (LoadingViewHolder) holder;
             loadingViewHolder.progressBar.setIndeterminate(true);
         }
diff --git a/app/src/main/java/gr/thmmy/mthmmy/activities/bookmarks/BookmarksActivity.java b/app/src/main/java/gr/thmmy/mthmmy/activities/bookmarks/BookmarksActivity.java
index dcf2ea84..7fbdf746 100644
--- a/app/src/main/java/gr/thmmy/mthmmy/activities/bookmarks/BookmarksActivity.java
+++ b/app/src/main/java/gr/thmmy/mthmmy/activities/bookmarks/BookmarksActivity.java
@@ -69,9 +69,9 @@ public class BookmarksActivity extends BaseActivity {
     }
 
     public boolean onFragmentRowInteractionListener(BookmarksFragment.Type type, String interactionType, Bookmark bookmark) {
-        if(type== BookmarksFragment.Type.TOPIC)
+        if (type == BookmarksFragment.Type.TOPIC)
             return onTopicInteractionListener(interactionType, bookmark);
-        else if (type==BookmarksFragment.Type.BOARD)
+        else if (type == BookmarksFragment.Type.BOARD)
             return onBoardInteractionListener(interactionType, bookmark);
 
         return false;
diff --git a/app/src/main/java/gr/thmmy/mthmmy/activities/bookmarks/BookmarksFragment.java b/app/src/main/java/gr/thmmy/mthmmy/activities/bookmarks/BookmarksFragment.java
index cdd6f714..12b70d89 100644
--- a/app/src/main/java/gr/thmmy/mthmmy/activities/bookmarks/BookmarksFragment.java
+++ b/app/src/main/java/gr/thmmy/mthmmy/activities/bookmarks/BookmarksFragment.java
@@ -23,6 +23,7 @@ import gr.thmmy.mthmmy.model.Bookmark;
 //TODO refactor using RecyclerView
 public class BookmarksFragment extends Fragment {
     enum Type {TOPIC, BOARD}
+
     private static final String ARG_SECTION_NUMBER = "SECTION_NUMBER";
     private static final String ARG_BOOKMARKS = "BOOKMARKS";
 
@@ -32,7 +33,7 @@ public class BookmarksFragment extends Fragment {
 
     static final String INTERACTION_CLICK_BOARD_BOOKMARK = "CLICK_BOARD_BOOKMARK";
     static final String INTERACTION_TOGGLE_BOARD_NOTIFICATION = "TOGGLE_BOARD_NOTIFICATION";
-    static final String INTERACTION_REMOVE_BOARD_BOOKMARK= "REMOVE_BOARD_BOOKMARK";
+    static final String INTERACTION_REMOVE_BOARD_BOOKMARK = "REMOVE_BOARD_BOOKMARK";
 
     private TextView nothingBookmarkedTextView;
 
@@ -46,16 +47,16 @@ public class BookmarksFragment extends Fragment {
     public BookmarksFragment() {/* Required empty public constructor */}
 
     private BookmarksFragment(Type type) {
-        this.type=type;
-        if(type==Type.TOPIC){
-            this.interactionClick=INTERACTION_CLICK_TOPIC_BOOKMARK;
-            this.interactionToggle=INTERACTION_TOGGLE_TOPIC_NOTIFICATION;
-            this.interactionRemove=INTERACTION_REMOVE_TOPIC_BOOKMARK;
+        this.type = type;
+        if (type == Type.TOPIC) {
+            this.interactionClick = INTERACTION_CLICK_TOPIC_BOOKMARK;
+            this.interactionToggle = INTERACTION_TOGGLE_TOPIC_NOTIFICATION;
+            this.interactionRemove = INTERACTION_REMOVE_TOPIC_BOOKMARK;
         }
-        else if (type==Type.BOARD){
-            this.interactionClick=INTERACTION_CLICK_BOARD_BOOKMARK;
-            this.interactionToggle=INTERACTION_TOGGLE_BOARD_NOTIFICATION;
-            this.interactionRemove=INTERACTION_REMOVE_BOARD_BOOKMARK;
+        else if (type == Type.BOARD) {
+            this.interactionClick = INTERACTION_CLICK_BOARD_BOOKMARK;
+            this.interactionToggle = INTERACTION_TOGGLE_BOARD_NOTIFICATION;
+            this.interactionRemove = INTERACTION_REMOVE_BOARD_BOOKMARK;
         }
     }
 
@@ -104,7 +105,7 @@ public class BookmarksFragment extends Fragment {
         final LinearLayout bookmarksLinearView = rootView.findViewById(R.id.bookmarks_container);
         nothingBookmarkedTextView = rootView.findViewById(R.id.nothing_bookmarked);
 
-        if(this.bookmarks != null && !this.bookmarks.isEmpty()) {
+        if (this.bookmarks != null && !this.bookmarks.isEmpty()) {
             hideNothingBookmarked();
             for (final Bookmark bookmark : bookmarks) {
                 if (bookmark != null && bookmark.getTitle() != null) {
@@ -134,20 +135,21 @@ public class BookmarksFragment extends Fragment {
 
                     (row.findViewById(R.id.remove_bookmark)).setOnClickListener(view -> {
                         Activity activity = getActivity();
-                        if (activity instanceof BookmarksActivity){
+                        if (activity instanceof BookmarksActivity) {
                             ((BookmarksActivity) activity).onFragmentRowInteractionListener(type, interactionRemove, bookmark);
                             bookmarks.remove(bookmark);
                         }
                         row.setVisibility(View.GONE);
 
-                        if (bookmarks.isEmpty()){
+                        if (bookmarks.isEmpty()) {
                             showNothingBookmarked();
                         }
                     });
                     bookmarksLinearView.addView(row);
                 }
             }
-        } else
+        }
+        else
             showNothingBookmarked();
 
         return rootView;
@@ -155,12 +157,12 @@ public class BookmarksFragment extends Fragment {
 
 
     private void showNothingBookmarked() {
-        if(nothingBookmarkedTextView!=null)
+        if (nothingBookmarkedTextView != null)
             nothingBookmarkedTextView.setVisibility(View.VISIBLE);
     }
 
-    private void hideNothingBookmarked(){
-        if(nothingBookmarkedTextView!=null)
+    private void hideNothingBookmarked() {
+        if (nothingBookmarkedTextView != null)
             nothingBookmarkedTextView.setVisibility(View.INVISIBLE);
     }
 
diff --git a/app/src/main/java/gr/thmmy/mthmmy/activities/create_content/CreateContentActivity.java b/app/src/main/java/gr/thmmy/mthmmy/activities/create_content/CreateContentActivity.java
index ba14ff98..518f0031 100644
--- a/app/src/main/java/gr/thmmy/mthmmy/activities/create_content/CreateContentActivity.java
+++ b/app/src/main/java/gr/thmmy/mthmmy/activities/create_content/CreateContentActivity.java
@@ -82,11 +82,13 @@ public class CreateContentActivity extends BaseActivity implements NewTopicTask.
             }
         });
     }
+
     @Override
     public void onBackPressed() {
         if (emojiKeyboard.getVisibility() == View.VISIBLE) {
             emojiKeyboard.setVisibility(View.GONE);
-        } else {
+        }
+        else {
             super.onBackPressed();
         }
     }
@@ -103,7 +105,8 @@ public class CreateContentActivity extends BaseActivity implements NewTopicTask.
         if (success) {
             Timber.i("New topic created successfully");
             finish();
-        } else {
+        }
+        else {
             Timber.w("New topic creation failed");
             Toast.makeText(BaseApplication.getInstance().getApplicationContext(), "Failed to create new topic!", Toast.LENGTH_LONG).show();
             finish();
diff --git a/app/src/main/java/gr/thmmy/mthmmy/activities/create_content/NewTopicTask.java b/app/src/main/java/gr/thmmy/mthmmy/activities/create_content/NewTopicTask.java
index 0749d367..7925d315 100644
--- a/app/src/main/java/gr/thmmy/mthmmy/activities/create_content/NewTopicTask.java
+++ b/app/src/main/java/gr/thmmy/mthmmy/activities/create_content/NewTopicTask.java
@@ -22,7 +22,7 @@ public class NewTopicTask extends AsyncTask {
     private NewTopicTaskCallbacks listener;
     private boolean includeAppSignature;
 
-    public NewTopicTask(NewTopicTaskCallbacks listener, boolean includeAppSignature){
+    public NewTopicTask(NewTopicTaskCallbacks listener, boolean includeAppSignature) {
         this.listener = listener;
         this.includeAppSignature = includeAppSignature;
     }
@@ -96,6 +96,7 @@ public class NewTopicTask extends AsyncTask {
 
     public interface NewTopicTaskCallbacks {
         void onNewTopicTaskStarted();
+
         void onNewTopicTaskFinished(boolean success);
     }
 }
diff --git a/app/src/main/java/gr/thmmy/mthmmy/activities/downloads/DownloadsActivity.java b/app/src/main/java/gr/thmmy/mthmmy/activities/downloads/DownloadsActivity.java
index 1327a2d0..0e9ba74f 100644
--- a/app/src/main/java/gr/thmmy/mthmmy/activities/downloads/DownloadsActivity.java
+++ b/app/src/main/java/gr/thmmy/mthmmy/activities/downloads/DownloadsActivity.java
@@ -81,7 +81,8 @@ public class DownloadsActivity extends BaseActivity implements DownloadsAdapter.
                 Toast.makeText(BaseApplication.getInstance().getApplicationContext(), "An error has occurred\nAborting.", Toast.LENGTH_SHORT).show();
                 finish();
             }
-        } else downloadsUrl = downloadsIndexUrl;
+        }
+        else downloadsUrl = downloadsIndexUrl;
 
         //Initialize toolbar
         toolbar = findViewById(R.id.toolbar);
@@ -166,7 +167,8 @@ public class DownloadsActivity extends BaseActivity implements DownloadsAdapter.
             if (downloadsUrl.contains("tpstart"))
                 parseDownloadPageTask.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, downloadsUrl.substring(0
                         , downloadsUrl.lastIndexOf(";tpstart=")) + ";tpstart=" + pagesLoaded * 10);
-            else parseDownloadPageTask.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, downloadsUrl + ";tpstart=" + pagesLoaded * 10);
+            else
+                parseDownloadPageTask.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, downloadsUrl + ";tpstart=" + pagesLoaded * 10);
         }
     }
 
@@ -237,7 +239,8 @@ public class DownloadsActivity extends BaseActivity implements DownloadsAdapter.
                         int pageNumber = Integer.parseInt(page.text());
                         if (pageNumber > numberOfPages) numberOfPages = pageNumber;
                     }
-                } else numberOfPages = 1;
+                }
+                else numberOfPages = 1;
 
                 Elements rows = downloadPage.select("table.tborder>tbody>tr");
                 if (type == Download.DownloadItemType.DOWNLOADS_CATEGORY) {
@@ -253,20 +256,23 @@ public class DownloadsActivity extends BaseActivity implements DownloadsAdapter.
 
                                 parsedDownloads.add(new Download(type, url, title, subtitle, null,
                                         true, null));
-                            } else {
+                            }
+                            else {
                                 String stats = row.text();
                                 stats = stats.replace(title, "").replace(subtitle, "").trim();
                                 parsedDownloads.add(new Download(type, url, title, subtitle, stats,
                                         false, null));
                             }
-                        } else {
+                        }
+                        else {
                             String stats = row.text();
                             stats = stats.replace(title, "").replace(subtitle, "").trim();
                             parsedDownloads.add(new Download(type, url, title, subtitle, stats,
                                     false, null));
                         }
                     }
-                } else {
+                }
+                else {
                     download = new Download(type,
                             rows.select("b>a").first().attr("href"),
                             rows.select("b>a").first().text(),
diff --git a/app/src/main/java/gr/thmmy/mthmmy/activities/downloads/DownloadsAdapter.java b/app/src/main/java/gr/thmmy/mthmmy/activities/downloads/DownloadsAdapter.java
index 63a2c8a8..19413074 100644
--- a/app/src/main/java/gr/thmmy/mthmmy/activities/downloads/DownloadsAdapter.java
+++ b/app/src/main/java/gr/thmmy/mthmmy/activities/downloads/DownloadsAdapter.java
@@ -57,7 +57,8 @@ class DownloadsAdapter extends RecyclerView.Adapter {
             View download = LayoutInflater.from(parent.getContext()).
                     inflate(R.layout.activity_downloads_row, parent, false);
             return new DownloadViewHolder(download);
-        } else if (viewType == VIEW_TYPE_LOADING) {
+        }
+        else if (viewType == VIEW_TYPE_LOADING) {
             View loading = LayoutInflater.from(parent.getContext()).
                     inflate(R.layout.recycler_loading_item, parent, false);
             return new LoadingViewHolder(loading);
@@ -90,7 +91,8 @@ class DownloadsAdapter extends RecyclerView.Adapter {
                 if (downloadExpandableVisibility.get(downloadViewHolder.getAdapterPosition())) {
                     downloadViewHolder.informationExpandable.setVisibility(View.VISIBLE);
                     downloadViewHolder.informationExpandableBtn.setImageResource(R.drawable.ic_arrow_drop_up_accent_24dp);
-                } else {
+                }
+                else {
                     downloadViewHolder.informationExpandable.setVisibility(View.GONE);
                     downloadViewHolder.informationExpandableBtn.setImageResource(R.drawable.ic_arrow_drop_down_accent_24dp);
                 }
@@ -100,7 +102,8 @@ class DownloadsAdapter extends RecyclerView.Adapter {
                     if (visible) {
                         downloadViewHolder.informationExpandable.setVisibility(View.GONE);
                         downloadViewHolder.informationExpandableBtn.setImageResource(R.drawable.ic_arrow_drop_down_accent_24dp);
-                    } else {
+                    }
+                    else {
                         downloadViewHolder.informationExpandable.setVisibility(View.VISIBLE);
                         downloadViewHolder.informationExpandableBtn.setImageResource(R.drawable.ic_arrow_drop_up_accent_24dp);
                     }
@@ -112,12 +115,14 @@ class DownloadsAdapter extends RecyclerView.Adapter {
                     String tmp = context.getResources().getString(R.string.fa_folder) + " "
                             + download.getTitle();
                     downloadViewHolder.title.setText(tmp);
-                } else {
+                }
+                else {
                     String tmp = context.getResources().getString(R.string.fa_file) + " "
                             + download.getTitle();
                     downloadViewHolder.title.setText(tmp);
                 }
-            } else {
+            }
+            else {
                 downloadViewHolder.downloadRow.setOnClickListener(view -> {
                     try {
                         ((BaseActivity) context).downloadFile(new ThmmyFile(
@@ -129,7 +134,8 @@ class DownloadsAdapter extends RecyclerView.Adapter {
 
                 if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
                     downloadViewHolder.upperLinear.setBackgroundColor(context.getResources().getColor(R.color.background, null));
-                } else {
+                }
+                else {
                     //noinspection deprecation
                     downloadViewHolder.upperLinear.setBackgroundColor(context.getResources().getColor(R.color.background));
                 }
@@ -148,7 +154,8 @@ class DownloadsAdapter extends RecyclerView.Adapter {
             if (tmp != null && !Objects.equals(tmp, ""))
                 downloadViewHolder.uploaderDate.setText(tmp);
             else downloadViewHolder.uploaderDate.setVisibility(View.GONE);
-        } else if (holder instanceof LoadingViewHolder) {
+        }
+        else if (holder instanceof LoadingViewHolder) {
             LoadingViewHolder loadingViewHolder = (LoadingViewHolder) holder;
             loadingViewHolder.progressBar.setIndeterminate(true);
         }
diff --git a/app/src/main/java/gr/thmmy/mthmmy/activities/main/MainActivity.java b/app/src/main/java/gr/thmmy/mthmmy/activities/main/MainActivity.java
index a978f424..58a3b8db 100644
--- a/app/src/main/java/gr/thmmy/mthmmy/activities/main/MainActivity.java
+++ b/app/src/main/java/gr/thmmy/mthmmy/activities/main/MainActivity.java
@@ -164,7 +164,8 @@ public class MainActivity extends BaseActivity implements RecentFragment.RecentF
             i.putExtra(BUNDLE_TOPIC_TITLE, topicSummary.getSubject());
             i.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
             startActivity(i);
-        } else
+        }
+        else
             Timber.e("onUnreadFragmentInteraction TopicSummary came without a link");
     }
 
@@ -256,26 +257,31 @@ public class MainActivity extends BaseActivity implements RecentFragment.RecentF
                         redirectIntent.putExtra(BUNDLE_BOARD_URL, uri.toString());
                         redirectIntent.putExtra(BUNDLE_BOARD_TITLE, "");
                         startActivity(redirectIntent);
-                    } else if (page.is(ThmmyPage.PageCategory.TOPIC)) {
+                    }
+                    else if (page.is(ThmmyPage.PageCategory.TOPIC)) {
                         Intent redirectIntent = new Intent(MainActivity.this, TopicActivity.class);
                         redirectIntent.putExtra(BUNDLE_TOPIC_URL, uri.toString());
                         redirectIntent.putExtra(BUNDLE_TOPIC_TITLE, "");
                         startActivity(redirectIntent);
-                    } else if (page.is(ThmmyPage.PageCategory.PROFILE)) {
+                    }
+                    else if (page.is(ThmmyPage.PageCategory.PROFILE)) {
                         Intent redirectIntent = new Intent(MainActivity.this, ProfileActivity.class);
                         redirectIntent.putExtra(BUNDLE_PROFILE_URL, uri.toString());
                         redirectIntent.putExtra(BUNDLE_PROFILE_THUMBNAIL_URL, "");
                         redirectIntent.putExtra(BUNDLE_PROFILE_USERNAME, "");
                         startActivity(redirectIntent);
-                    } else if (page.is(ThmmyPage.PageCategory.DOWNLOADS)) {
+                    }
+                    else if (page.is(ThmmyPage.PageCategory.DOWNLOADS)) {
                         Intent redirectIntent = new Intent(MainActivity.this, DownloadsActivity.class);
                         redirectIntent.putExtra(BUNDLE_DOWNLOADS_URL, uri.toString());
                         redirectIntent.putExtra(BUNDLE_DOWNLOADS_TITLE, "");
                         startActivity(redirectIntent);
-                    } else if (!page.is(ThmmyPage.PageCategory.INDEX)) {
+                    }
+                    else if (!page.is(ThmmyPage.PageCategory.INDEX)) {
                         Toast.makeText(BaseApplication.getInstance().getApplicationContext(), "This thmmy sector is not yet supported.", Toast.LENGTH_LONG).show();
                     }
-                } else {
+                }
+                else {
                     Toast.makeText(BaseApplication.getInstance().getApplicationContext(), "This is not thmmy.", Toast.LENGTH_LONG).show();
                 }
             }
diff --git a/app/src/main/java/gr/thmmy/mthmmy/activities/main/forum/ForumFragment.java b/app/src/main/java/gr/thmmy/mthmmy/activities/main/forum/ForumFragment.java
index 3344d089..4299c2dd 100644
--- a/app/src/main/java/gr/thmmy/mthmmy/activities/main/forum/ForumFragment.java
+++ b/app/src/main/java/gr/thmmy/mthmmy/activities/main/forum/ForumFragment.java
@@ -158,12 +158,13 @@ public class ForumFragment extends BaseFragment {
     @Override
     public void onDestroy() {
         super.onDestroy();
-        if (forumTask!=null){
-            try{
-                if(forumTask.isRunning())
+        if (forumTask != null) {
+            try {
+                if (forumTask.isRunning())
                     forumTask.cancel(true);
             }    // Yes, it happens even though we checked
-            catch (NullPointerException ignored){ }
+            catch (NullPointerException ignored) {
+            }
         }
     }
 
@@ -180,9 +181,11 @@ public class ForumFragment extends BaseFragment {
             categories.clear();
             categories.addAll(fetchedCategories);
             forumAdapter.notifyParentDataSetChanged(false);
-        } else if (resultCode == NetworkResultCodes.NETWORK_ERROR) {
+        }
+        else if (resultCode == NetworkResultCodes.NETWORK_ERROR) {
             Toast.makeText(BaseApplication.getInstance().getApplicationContext(), "Network error", Toast.LENGTH_SHORT).show();
-        } else {
+        }
+        else {
             Toast.makeText(BaseApplication.getInstance().getApplicationContext(), "Unexpected error," +
                     " please contact the developers with the details", Toast.LENGTH_LONG).show();
         }
@@ -218,13 +221,15 @@ public class ForumFragment extends BaseFragment {
                             Board board = new Board(boardElement.attr("href"), boardElement.text(), null, null, null, null);
                             category.getBoards().add(board);
                         }
-                    } else
+                    }
+                    else
                         category.setExpanded(false);
 
                     fetchedCategories.add(category);
                 }
                 return fetchedCategories;
-            } else
+            }
+            else
                 throw new ParseException("Parsing failed");
         }
 
diff --git a/app/src/main/java/gr/thmmy/mthmmy/activities/main/recent/RecentAdapter.java b/app/src/main/java/gr/thmmy/mthmmy/activities/main/recent/RecentAdapter.java
index 084c3a3a..9d1ab90d 100644
--- a/app/src/main/java/gr/thmmy/mthmmy/activities/main/recent/RecentAdapter.java
+++ b/app/src/main/java/gr/thmmy/mthmmy/activities/main/recent/RecentAdapter.java
@@ -44,12 +44,11 @@ class RecentAdapter extends RecyclerView.Adapter {
     public void onBindViewHolder(final ViewHolder holder, final int position) {
         TopicSummary topicSummary = recentList.get(position);
         holder.mTitleView.setText(topicSummary.getSubject());
-        if(BaseApplication.getInstance().isDisplayRelativeTimeEnabled()){
+        if (BaseApplication.getInstance().isDisplayRelativeTimeEnabled()) {
             String timestamp = topicSummary.getLastPostTimestamp();
-            try{
+            try {
                 holder.mDateTimeView.setReferenceTime(Long.valueOf(timestamp));
-            }
-            catch(NumberFormatException e){
+            } catch (NumberFormatException e) {
                 Timber.e(e, "Invalid number format: %s", timestamp);
                 holder.mDateTimeView.setText(topicSummary.getLastPostSimplifiedDateTime());
             }
diff --git a/app/src/main/java/gr/thmmy/mthmmy/activities/main/recent/RecentFragment.java b/app/src/main/java/gr/thmmy/mthmmy/activities/main/recent/RecentFragment.java
index ed4431ce..fe33ccc4 100644
--- a/app/src/main/java/gr/thmmy/mthmmy/activities/main/recent/RecentFragment.java
+++ b/app/src/main/java/gr/thmmy/mthmmy/activities/main/recent/RecentFragment.java
@@ -54,7 +54,8 @@ public class RecentFragment extends BaseFragment {
     private RecentTask recentTask;
 
     // Required empty public constructor
-    public RecentFragment() {}
+    public RecentFragment() {
+    }
 
     /**
      * Use ONLY this factory method to create a new instance of
@@ -123,12 +124,13 @@ public class RecentFragment extends BaseFragment {
     @Override
     public void onDestroy() {
         super.onDestroy();
-        if (recentTask!=null){
-            try{
-                if(recentTask.isRunning())
+        if (recentTask != null) {
+            try {
+                if (recentTask.isRunning())
                     recentTask.cancel(true);
             }    // Yes, it happens even though we checked
-            catch (NullPointerException ignored){ }
+            catch (NullPointerException ignored) {
+            }
         }
     }
 
@@ -146,9 +148,11 @@ public class RecentFragment extends BaseFragment {
             topicSummaries.clear();
             topicSummaries.addAll(fetchedRecent);
             recentAdapter.notifyDataSetChanged();
-        } else if (resultCode == NetworkResultCodes.NETWORK_ERROR) {
+        }
+        else if (resultCode == NetworkResultCodes.NETWORK_ERROR) {
             Toast.makeText(BaseApplication.getInstance().getApplicationContext(), "Network error", Toast.LENGTH_SHORT).show();
-        } else {
+        }
+        else {
             Toast.makeText(BaseApplication.getInstance().getApplicationContext(), "Unexpected error," +
                     " please contact the developers with the details", Toast.LENGTH_LONG).show();
         }
diff --git a/app/src/main/java/gr/thmmy/mthmmy/activities/main/unread/UnreadAdapter.java b/app/src/main/java/gr/thmmy/mthmmy/activities/main/unread/UnreadAdapter.java
index 068f5e61..6afd09c4 100644
--- a/app/src/main/java/gr/thmmy/mthmmy/activities/main/unread/UnreadAdapter.java
+++ b/app/src/main/java/gr/thmmy/mthmmy/activities/main/unread/UnreadAdapter.java
@@ -41,12 +41,11 @@ class UnreadAdapter extends RecyclerView.Adapter {
         final UnreadAdapter.ViewHolder viewHolder = (UnreadAdapter.ViewHolder) holder;
 
         viewHolder.mTitleView.setText(topicSummary.getSubject());
-        if(BaseApplication.getInstance().isDisplayRelativeTimeEnabled()){
+        if (BaseApplication.getInstance().isDisplayRelativeTimeEnabled()) {
             String timestamp = topicSummary.getLastPostTimestamp();
-            try{
+            try {
                 viewHolder.mDateTimeView.setReferenceTime(Long.valueOf(timestamp));
-            }
-            catch(NumberFormatException e){
+            } catch (NumberFormatException e) {
                 Timber.e(e, "Invalid number format: %s", timestamp);
                 viewHolder.mDateTimeView.setText(topicSummary.getLastPostSimplifiedDateTime());
             }
diff --git a/app/src/main/java/gr/thmmy/mthmmy/activities/main/unread/UnreadFragment.java b/app/src/main/java/gr/thmmy/mthmmy/activities/main/unread/UnreadFragment.java
index 50b2b71d..a660b7ab 100644
--- a/app/src/main/java/gr/thmmy/mthmmy/activities/main/unread/UnreadFragment.java
+++ b/app/src/main/java/gr/thmmy/mthmmy/activities/main/unread/UnreadFragment.java
@@ -66,7 +66,8 @@ public class UnreadFragment extends BaseFragment {
     private MarkAsReadTask markAsReadTask;
 
     // Required empty public constructor
-    public UnreadFragment() {}
+    public UnreadFragment() {
+    }
 
     /**
      * Use ONLY this factory method to create a new instance of
@@ -92,7 +93,7 @@ public class UnreadFragment extends BaseFragment {
     @Override
     public void onActivityCreated(Bundle savedInstanceState) {
         super.onActivityCreated(savedInstanceState);
-        if (topicSummaries.isEmpty()){
+        if (topicSummaries.isEmpty()) {
             hideMarkAsReadFAB();
             unreadTask = new UnreadTask(this::onUnreadTaskStarted, UnreadFragment.this::onUnreadTaskCancelled, this::onUnreadTaskFinished);
             assert SessionManager.unreadUrl != null;
@@ -115,7 +116,7 @@ public class UnreadFragment extends BaseFragment {
             progressBar = rootView.findViewById(R.id.progressBar);
             noUnreadTopicsTextView = rootView.findViewById(R.id.no_unread_topics);
             markAsReadFAB = rootView.findViewById(R.id.unread_fab);
-            
+
             unreadAdapter = new UnreadAdapter(topicSummaries, fragmentInteractionListener);
 
             CustomRecyclerView recyclerView = rootView.findViewById(R.id.list);
@@ -140,39 +141,41 @@ public class UnreadFragment extends BaseFragment {
     public void onDestroy() {
         super.onDestroy();
         cancelUnreadTaskIfRunning();
-        if (markAsReadTask !=null){
-            try{
-                if(markAsReadTask.isRunning())
+        if (markAsReadTask != null) {
+            try {
+                if (markAsReadTask.isRunning())
                     markAsReadTask.cancel(true);
             }    // Yes, it happens even though we checked
-            catch (NullPointerException ignored){ }
+            catch (NullPointerException ignored) {
+            }
         }
-        if(topicSummaries!=null)
+        if (topicSummaries != null)
             topicSummaries.clear();
     }
 
-    private void startUnreadTask(){
-        if (unreadTask!=null) {
-            try{
-                if(!unreadTask.isRunning()){
+    private void startUnreadTask() {
+        if (unreadTask != null) {
+            try {
+                if (!unreadTask.isRunning()) {
                     numberOfPages = 0;
                     loadedPages = 0;
                     unreadTask = new UnreadTask(UnreadFragment.this::onUnreadTaskStarted, UnreadFragment.this::onUnreadTaskCancelled, UnreadFragment.this::onUnreadTaskFinished);
                     assert SessionManager.unreadUrl != null;
                     unreadTask.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, SessionManager.unreadUrl.toString());
                 }
+            } catch (NullPointerException ignored) {
             }
-            catch (NullPointerException ignored){ }
         }
     }
 
-    private void cancelUnreadTaskIfRunning(){
-        if (unreadTask!=null){
-            try{
-                if(unreadTask.isRunning())
+    private void cancelUnreadTaskIfRunning() {
+        if (unreadTask != null) {
+            try {
+                if (unreadTask.isRunning())
                     unreadTask.cancel(true);
             }    // Yes, it happens even though we checked
-            catch (NullPointerException ignored){ }
+            catch (NullPointerException ignored) {
+            }
         }
     }
 
@@ -197,16 +200,17 @@ public class UnreadFragment extends BaseFragment {
         builder.setTitle("Mark all as read");
         builder.setMessage("Are you sure that you want to mark ALL topics as read?");
         builder.setPositiveButton("Yep", (dialogInterface, i) -> {
-            if (!markAsReadTask.isRunning()){
+            if (!markAsReadTask.isRunning()) {
                 markAsReadTask = new MarkAsReadTask(this::onMarkAsReadTaskStarted, this::onMarkAsReadTaskFinished);
                 markAsReadTask.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
             }
         });
-        builder.setNegativeButton("Nope", (dialogInterface, i) -> {});
+        builder.setNegativeButton("Nope", (dialogInterface, i) -> {
+        });
         builder.create().show();
     }
 
-    private void hideProgressUI(){
+    private void hideProgressUI() {
         progressBar.setVisibility(ProgressBar.INVISIBLE);
         swipeRefreshLayout.setRefreshing(false);
     }
@@ -221,10 +225,10 @@ public class UnreadFragment extends BaseFragment {
         swipeRefreshLayout.setRefreshing(false);
     }
 
-    private void onUnreadTaskFinished(int resultCode,  ArrayList fetchedUnread) {
+    private void onUnreadTaskFinished(int resultCode, ArrayList fetchedUnread) {
         if (resultCode == NetworkResultCodes.SUCCESSFUL) {
-            if(!fetchedUnread.isEmpty()){
-                if(loadedPages==0)
+            if (!fetchedUnread.isEmpty()) {
+                if (loadedPages == 0)
                     topicSummaries.clear();
                 topicSummaries.addAll(fetchedUnread);
                 noUnreadTopicsTextView.setVisibility(View.INVISIBLE);
@@ -245,7 +249,7 @@ public class UnreadFragment extends BaseFragment {
             else
                 hideProgressUI();
         }
-        else{
+        else {
             hideProgressUI();
             if (resultCode == NetworkResultCodes.NETWORK_ERROR)
                 Toast.makeText(BaseApplication.getInstance().getApplicationContext(), "Network error", Toast.LENGTH_SHORT).show();
@@ -258,13 +262,13 @@ public class UnreadFragment extends BaseFragment {
     }
 
     private class UnreadTask extends NewParseTask> {
-        UnreadTask(OnTaskStartedListener onTaskStartedListener, OnTaskCancelledListener onTaskCancelledListener,  OnNetworkTaskFinishedListener> onParseTaskFinishedListener) {
+        UnreadTask(OnTaskStartedListener onTaskStartedListener, OnTaskCancelledListener onTaskCancelledListener, OnNetworkTaskFinishedListener> onParseTaskFinishedListener) {
             super(onTaskStartedListener, onTaskCancelledListener, onParseTaskFinishedListener);
         }
 
         @Override
         protected ArrayList parse(Document document, Response response) throws ParseException, InvalidSessionException {
-            if(!document.select("td:containsOwn(Only registered members are allowed to access this section.)").isEmpty())
+            if (!document.select("td:containsOwn(Only registered members are allowed to access this section.)").isEmpty())
                 throw new InvalidSessionException();
 
             Elements unread = document.select("table.bordercolor[cellspacing=1] tr:not(.titlebg)");
@@ -316,11 +320,11 @@ public class UnreadFragment extends BaseFragment {
         progressBar.setVisibility(ProgressBar.VISIBLE);
     }
 
-    private void onMarkAsReadTaskFinished(int resultCode,  Void v) {
+    private void onMarkAsReadTaskFinished(int resultCode, Void v) {
         hideProgressUI();
         if (resultCode == NetworkResultCodes.SUCCESSFUL)
-                startUnreadTask();
-        else{
+            startUnreadTask();
+        else {
             hideProgressUI();
             if (resultCode == NetworkResultCodes.NETWORK_ERROR)
                 Toast.makeText(BaseApplication.getInstance().getApplicationContext(), "Network error", Toast.LENGTH_SHORT).show();
diff --git a/app/src/main/java/gr/thmmy/mthmmy/activities/profile/ProfileActivity.java b/app/src/main/java/gr/thmmy/mthmmy/activities/profile/ProfileActivity.java
index 82fd1eda..75b7073f 100644
--- a/app/src/main/java/gr/thmmy/mthmmy/activities/profile/ProfileActivity.java
+++ b/app/src/main/java/gr/thmmy/mthmmy/activities/profile/ProfileActivity.java
@@ -68,7 +68,7 @@ import static gr.thmmy.mthmmy.utils.ui.PhotoViewUtils.displayPhotoViewImage;
  * this user's avatar url using the key {@link #BUNDLE_PROFILE_THUMBNAIL_URL} and a String containing
  * the username using the key {@link #BUNDLE_PROFILE_USERNAME}.
  */
-public class ProfileActivity extends BaseActivity implements LatestPostsFragment.LatestPostsFragmentInteractionListener, LatestPostsFragment.OnLoadingListener, StatsFragment.OnLoadingListener{
+public class ProfileActivity extends BaseActivity implements LatestPostsFragment.LatestPostsFragmentInteractionListener, LatestPostsFragment.OnLoadingListener, StatsFragment.OnLoadingListener {
     /**
      * The key to use when putting profile's url String to {@link ProfileActivity}'s Bundle.
      */
@@ -185,7 +185,8 @@ public class ProfileActivity extends BaseActivity implements LatestPostsFragment
         if (target.is(ThmmyPage.PageCategory.PROFILE_STATS)) {
             profileUrl = profileUrl.substring(0, profileUrl.indexOf(";sa=statPanel"));
             tabSelect = 2;
-        } else if (target.is(ThmmyPage.PageCategory.PROFILE_LATEST_POSTS)) {
+        }
+        else if (target.is(ThmmyPage.PageCategory.PROFILE_LATEST_POSTS)) {
             profileUrl = profileUrl.substring(0, profileUrl.indexOf(";sa=showPosts"));
             tabSelect = 1;
         }
@@ -220,8 +221,8 @@ public class ProfileActivity extends BaseActivity implements LatestPostsFragment
         setBarVisibility(loading);
     }
 
-    private void setBarVisibility (boolean visible){
-        if(visible)
+    private void setBarVisibility(boolean visible) {
+        if (visible)
             progressBar.setVisibility(ProgressBar.VISIBLE);
         else
             progressBar.setVisibility(ProgressBar.INVISIBLE);
@@ -233,17 +234,17 @@ public class ProfileActivity extends BaseActivity implements LatestPostsFragment
         if (pmFAB.getVisibility() != View.GONE) pmFAB.setEnabled(false);
     }
 
-    private void loadAvatar(Boolean loadDefault){
+    private void loadAvatar(Boolean loadDefault) {
         String avatarUri;
-        if(loadDefault)
+        if (loadDefault)
             avatarUri = "R.drawable.ic_default_user_avatar";
         else {
             avatarUri = avatarUrl;
-            if(avatarUrl!=null)
+            if (avatarUrl != null)
                 avatarView.setOnClickListener(v -> displayPhotoViewImage(ProfileActivity.this, avatarUrl));
         }
 
-        if(isValidContextForGlide(this)){
+        if (isValidContextForGlide(this)) {
             Glide.with(this)
                     .load(avatarUri)
                     .circleCrop()
@@ -292,7 +293,8 @@ public class ProfileActivity extends BaseActivity implements LatestPostsFragment
                 Element tmpEl = profilePage.select("td.windowbg:nth-child(2)").first();
                 if (tmpEl != null) {
                     personalText = emojiTagToHtml(tmpEl.text().trim());
-                } else {
+                }
+                else {
                     //Should never get here!
                     //Something is wrong.
                     Timber.e("An error occurred while trying to find profile's personal text.");
@@ -328,11 +330,13 @@ public class ProfileActivity extends BaseActivity implements LatestPostsFragment
                 if (usernameSpan != null) {
                     if (isOnline) {
                         usernameView.setTextColor(Color.parseColor("#4CAF50"));
-                    } else {
+                    }
+                    else {
                         usernameView.setTextColor(Color.GRAY);
                     }
                     usernameView.setText(usernameSpan);
-                } else if (usernameView.getText() != username) usernameView.setText(username);
+                }
+                else if (usernameView.getText() != username) usernameView.setText(username);
                 if (avatarUrl != null && !Objects.equals(avatarUrl, ""))
                     loadAvatar(false);
                 else
@@ -349,12 +353,14 @@ public class ProfileActivity extends BaseActivity implements LatestPostsFragment
                     TabLayout.Tab tab = tabLayout.getTabAt(tabSelect);
                     if (tab != null) tab.select();
                 }
-            } else if (result == NetworkResultCodes.NETWORK_ERROR) {
+            }
+            else if (result == NetworkResultCodes.NETWORK_ERROR) {
                 Timber.w("Network error while excecuting profile activity");
                 Toast.makeText(BaseApplication.getInstance().getApplicationContext(), "Network error"
                         , Toast.LENGTH_LONG).show();
                 finish();
-            } else {
+            }
+            else {
                 Toast.makeText(BaseApplication.getInstance().getApplicationContext(), "Fatal error!\n Aborting..."
                         , Toast.LENGTH_LONG).show();
                 finish();
diff --git a/app/src/main/java/gr/thmmy/mthmmy/activities/profile/latestPosts/LatestPostsAdapter.java b/app/src/main/java/gr/thmmy/mthmmy/activities/profile/latestPosts/LatestPostsAdapter.java
index b052dc32..107747f4 100644
--- a/app/src/main/java/gr/thmmy/mthmmy/activities/profile/latestPosts/LatestPostsAdapter.java
+++ b/app/src/main/java/gr/thmmy/mthmmy/activities/profile/latestPosts/LatestPostsAdapter.java
@@ -51,17 +51,19 @@ class LatestPostsAdapter extends RecyclerView.Adapter {
             View view = LayoutInflater.from(parent.getContext()).
                     inflate(R.layout.fragment_profile_latest_posts_row, parent, false);
             return new LatestPostViewHolder(view);
-        } else {    // viewType == VIEW_TYPE_EMPTY
+        }
+        else {    // viewType == VIEW_TYPE_EMPTY
             View view = LayoutInflater.from(parent.getContext()).
                     inflate(R.layout.fragment_profile_latest_posts_empty_message, parent, false);
-            return new RecyclerView.ViewHolder(view){};
+            return new RecyclerView.ViewHolder(view) {
+            };
         }
     }
 
     @SuppressLint("ClickableViewAccessibility")
     @Override
     public void onBindViewHolder(@NonNull final RecyclerView.ViewHolder holder, int position) {
-        if (holder instanceof LatestPostViewHolder){
+        if (holder instanceof LatestPostViewHolder) {
             PostSummary topic = parsedTopicSummaries.get(position);
             final LatestPostViewHolder latestPostViewHolder = (LatestPostViewHolder) holder;
             latestPostViewHolder.postTitle.setText(topic.getSubject());
diff --git a/app/src/main/java/gr/thmmy/mthmmy/activities/profile/latestPosts/LatestPostsFragment.java b/app/src/main/java/gr/thmmy/mthmmy/activities/profile/latestPosts/LatestPostsFragment.java
index 939a1fbd..e61d83b2 100644
--- a/app/src/main/java/gr/thmmy/mthmmy/activities/profile/latestPosts/LatestPostsFragment.java
+++ b/app/src/main/java/gr/thmmy/mthmmy/activities/profile/latestPosts/LatestPostsFragment.java
@@ -182,7 +182,7 @@ public class LatestPostsFragment extends BaseFragment {
 
         protected void onPostExecute(Boolean result) {
             if (Boolean.FALSE.equals(result))
-                Timber.e(new ParseException("Parsing failed (latest posts)"),"ParseException");   //TODO: This is inaccurate (e.g. can also have an I/O cause)
+                Timber.e(new ParseException("Parsing failed (latest posts)"), "ParseException");   //TODO: This is inaccurate (e.g. can also have an I/O cause)
             int prevSize = parsedTopicSummaries.size();
             parsedTopicSummaries.addAll(fetchedParsedTopicSummaries);
             latestPostsAdapter.notifyItemRangeInserted(prevSize, parsedTopicSummaries.size() - prevSize);
@@ -200,7 +200,7 @@ public class LatestPostsFragment extends BaseFragment {
                         select("td:has(table:Contains(Εμφάνιση μηνυμάτων)):not([style]) > table");
 
             if (!latestPostsRows.select("td:contains(Sorry, no matches were found)").isEmpty() ||
-                    !latestPostsRows.select("td:contains(Δυστυχώς δεν βρέθηκε τίποτα)").isEmpty()){
+                    !latestPostsRows.select("td:contains(Δυστυχώς δεν βρέθηκε τίποτα)").isEmpty()) {
                 userHasPosts = false;
                 fetchedParsedTopicSummaries.add(null);
                 return true;
@@ -216,14 +216,15 @@ public class LatestPostsFragment extends BaseFragment {
                                 numberOfPages = Integer.parseInt(page.text());
                         }
                     }
-                } else {
+                }
+                else {
                     Elements rowHeader = row.select("td.middletext");
                     if (rowHeader.size() != 2)
                         return false;
                     else {
-                        pTopicTitle = rowHeader.first().text().replaceAll("\\u00a0","").trim();
+                        pTopicTitle = rowHeader.first().text().replaceAll("\\u00a0", "").trim();
                         pTopicUrl = rowHeader.first().select("a").last().attr("href");
-                        pDateTime = rowHeader.last().text().replaceAll("(on: )|(στις: )","");
+                        pDateTime = rowHeader.last().text().replaceAll("(on: )|(στις: )", "");
                     }
                     pPost = ParseHelpers.youtubeEmbeddedFix(row.select("div.post").first());
 
diff --git a/app/src/main/java/gr/thmmy/mthmmy/activities/profile/stats/StatsFragment.java b/app/src/main/java/gr/thmmy/mthmmy/activities/profile/stats/StatsFragment.java
index 33a892f4..49e60a63 100644
--- a/app/src/main/java/gr/thmmy/mthmmy/activities/profile/stats/StatsFragment.java
+++ b/app/src/main/java/gr/thmmy/mthmmy/activities/profile/stats/StatsFragment.java
@@ -93,7 +93,7 @@ public class StatsFragment extends Fragment {
                              Bundle savedInstanceState) {
         final View rootView = inflater.inflate(R.layout.fragment_profile_stats, container, false);
         mainContent = rootView.findViewById(R.id.main_content);
-        if (profileStatsTask!=null && profileStatsTask.getStatus() == AsyncTask.Status.FINISHED)
+        if (profileStatsTask != null && profileStatsTask.getStatus() == AsyncTask.Status.FINISHED)
             populateLayout();
         return rootView;
     }
@@ -101,7 +101,7 @@ public class StatsFragment extends Fragment {
     @Override
     public void onActivityCreated(Bundle savedInstanceState) {
         super.onActivityCreated(savedInstanceState);
-        if (profileStatsTask==null) {
+        if (profileStatsTask == null) {
             profileStatsTask = new ProfileStatsTask();
             profileStatsTask.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, profileUrl + ";sa=statPanel");
         }
@@ -158,7 +158,7 @@ public class StatsFragment extends Fragment {
         protected void onPostExecute(Boolean result) {
             onLoadingListener.onLoadingStats(false);
             if (!result)
-                Timber.e(new ParseException("Parsing failed (user stats)"),"ParseException");   //TODO: This is inaccurate (e.g. can also have an I/O cause)
+                Timber.e(new ParseException("Parsing failed (user stats)"), "ParseException");   //TODO: This is inaccurate (e.g. can also have an I/O cause)
             else
                 populateLayout();
         }
@@ -227,7 +227,8 @@ public class StatsFragment extends Fragment {
     }
 
     private void populateLayout() {
-        onLoadingListener.onLoadingStats(true);;
+        onLoadingListener.onLoadingStats(true);
+        ;
         ((TextView) mainContent.findViewById(R.id.general_statistics_title))
                 .setText(generalStatisticsTitle);
         ((TextView) mainContent.findViewById(R.id.general_statistics))
@@ -261,7 +262,8 @@ public class StatsFragment extends Fragment {
         if (isAdded()) {
             if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
                 postingActivityByTimeDataSet.setFillDrawable(getResources().getDrawable(R.drawable.line_chart_gradient, null));
-            } else
+            }
+            else
                 //noinspection deprecation
                 postingActivityByTimeDataSet.setFillDrawable(getResources().getDrawable(R.drawable.line_chart_gradient));
         }
@@ -300,7 +302,8 @@ public class StatsFragment extends Fragment {
         if (isAdded()) {
             if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
                 mostPopularBoardsByPostsDataSet.setColors(getResources().getColor(R.color.accent, null));
-            } else
+            }
+            else
                 //noinspection deprecation
                 mostPopularBoardsByPostsDataSet.setColors(getResources().getColor(R.color.accent));
         }
@@ -341,7 +344,8 @@ public class StatsFragment extends Fragment {
         if (isAdded()) {
             if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
                 mostPopularBoardsByActivityDataSet.setColors(getResources().getColor(R.color.accent, null));
-            } else
+            }
+            else
                 //noinspection deprecation
                 mostPopularBoardsByActivityDataSet.setColors(getResources().getColor(R.color.accent));
         }
diff --git a/app/src/main/java/gr/thmmy/mthmmy/activities/profile/summary/SummaryFragment.java b/app/src/main/java/gr/thmmy/mthmmy/activities/profile/summary/SummaryFragment.java
index a0cac182..fd62ad4a 100644
--- a/app/src/main/java/gr/thmmy/mthmmy/activities/profile/summary/SummaryFragment.java
+++ b/app/src/main/java/gr/thmmy/mthmmy/activities/profile/summary/SummaryFragment.java
@@ -125,7 +125,7 @@ public class SummaryFragment extends Fragment {
          * @see org.jsoup.Jsoup Jsoup
          */
         LinkedHashMap parseProfileSummary(Document profile) {
-            LinkedHashMap parsedInformation  = new LinkedHashMap<>();
+            LinkedHashMap parsedInformation = new LinkedHashMap<>();
 
             //Contains all summary's rows
             Elements summaryRows = profile.select("td.windowbg > table > tbody > tr");
@@ -135,16 +135,16 @@ public class SummaryFragment extends Fragment {
 
                 int tdSize = summaryRow.select("td").size();
 
-                if (tdSize > 1){
+                if (tdSize > 1) {
                     key = summaryRow.select("td").first().text().trim();
 
                     if (key.startsWith("Name") || key.startsWith("Όνομα"))
                         continue;
-                    else if (key.startsWith("Signature") || key.startsWith("Υπογραφή")){
+                    else if (key.startsWith("Signature") || key.startsWith("Υπογραφή")) {
                         key = summaryRow.selectFirst("td > table > tbody > tr > td").text().trim();
                         summaryRow.selectFirst("td > table > tbody > tr").remove(); //key not needed, outer html needed for CSS
                         value = ParseHelpers.emojiTagToHtml(ParseHelpers.youtubeEmbeddedFix(summaryRow));   // Is emojiTagToHtml() really needed here?
-                        if(summaryRow.text().trim().isEmpty())
+                        if (summaryRow.text().trim().isEmpty())
                             continue;
                         value = ("\n" +
                                 "\n" +
@@ -176,7 +176,7 @@ public class SummaryFragment extends Fragment {
             String key = entry.getKey();
             String value = entry.getValue();
 
-            if (key.startsWith("Current Status") || key.startsWith("Κατάσταση")){
+            if (key.startsWith("Current Status") || key.startsWith("Κατάσταση")) {
                 addEmptyView();
                 continue;
             }
@@ -194,7 +194,7 @@ public class SummaryFragment extends Fragment {
 
             String textViewContent = "" + key + " " + value;
 
-            if (key.startsWith("Signature") || key.startsWith("Υπογραφή")){
+            if (key.startsWith("Signature") || key.startsWith("Υπογραφή")) {
                 addEmptyView();
                 textViewContent = "" + key + "";
             }
@@ -219,7 +219,7 @@ public class SummaryFragment extends Fragment {
         }
     }
 
-    private void addEmptyView(){
+    private void addEmptyView() {
         mainContent.addView(new TextView(this.getContext()));
     }
 }
diff --git a/app/src/main/java/gr/thmmy/mthmmy/activities/settings/SettingsActivity.java b/app/src/main/java/gr/thmmy/mthmmy/activities/settings/SettingsActivity.java
index 6414a497..e9cc61f6 100644
--- a/app/src/main/java/gr/thmmy/mthmmy/activities/settings/SettingsActivity.java
+++ b/app/src/main/java/gr/thmmy/mthmmy/activities/settings/SettingsActivity.java
@@ -7,7 +7,7 @@ import androidx.fragment.app.FragmentTransaction;
 import gr.thmmy.mthmmy.R;
 import gr.thmmy.mthmmy.base.BaseActivity;
 
-public class SettingsActivity extends BaseActivity  {
+public class SettingsActivity extends BaseActivity {
     public static final String DEFAULT_HOME_TAB = "pref_app_main_default_tab_key";
     public static final String DISPLAY_RELATIVE_TIME = "pref_app_display_relative_time_key";
     public static final String NOTIFICATION_LED_KEY = "pref_notification_led_enable_key";
diff --git a/app/src/main/java/gr/thmmy/mthmmy/activities/settings/SettingsFragment.java b/app/src/main/java/gr/thmmy/mthmmy/activities/settings/SettingsFragment.java
index ef2d1693..983c542a 100644
--- a/app/src/main/java/gr/thmmy/mthmmy/activities/settings/SettingsFragment.java
+++ b/app/src/main/java/gr/thmmy/mthmmy/activities/settings/SettingsFragment.java
@@ -66,7 +66,7 @@ public class SettingsFragment extends PreferenceFragmentCompat implements Shared
         defaultHomeTabValues.add("0");
         defaultHomeTabValues.add("1");
 
-        if(isLoggedIn = BaseApplication.getInstance().getSessionManager().isLoggedIn()){
+        if (isLoggedIn = BaseApplication.getInstance().getSessionManager().isLoggedIn()) {
             defaultHomeTabEntries.add(UNREAD);
             defaultHomeTabValues.add("2");
         }
@@ -97,11 +97,11 @@ public class SettingsFragment extends PreferenceFragmentCompat implements Shared
     public void onCreatePreferences(Bundle bundle, String rootKey) {
         isLoggedIn = BaseApplication.getInstance().getSessionManager().isLoggedIn();    //Ensures it stays updated
         // Add the Preferences from the XML file if needed
-        if(isLoggedIn&&(prefs_type==PREFS_TYPE.GUEST||prefs_type==PREFS_TYPE.NOT_SET)){
+        if (isLoggedIn && (prefs_type == PREFS_TYPE.GUEST || prefs_type == PREFS_TYPE.NOT_SET)) {
             prefs_type = PREFS_TYPE.USER;
             addPreferencesFromResource(R.xml.app_preferences_user);
         }
-        else if(!isLoggedIn&&(prefs_type==PREFS_TYPE.USER||prefs_type==PREFS_TYPE.NOT_SET)){
+        else if (!isLoggedIn && (prefs_type == PREFS_TYPE.USER || prefs_type == PREFS_TYPE.NOT_SET)) {
             prefs_type = PREFS_TYPE.GUEST;
             addPreferencesFromResource(R.xml.app_preferences_guest);
         }
@@ -133,17 +133,20 @@ public class SettingsFragment extends PreferenceFragmentCompat implements Shared
                 if (existingValue.equals(SILENT_SELECTED)) {
                     //Selects "Silent"
                     intent.putExtra(RingtoneManager.EXTRA_RINGTONE_EXISTING_URI, (Uri) null);
-                } else {
+                }
+                else {
                     intent.putExtra(RingtoneManager.EXTRA_RINGTONE_EXISTING_URI, Uri.parse(existingValue));
                 }
-            } else {
+            }
+            else {
                 //No ringtone has been selected, set to the default
                 intent.putExtra(RingtoneManager.EXTRA_RINGTONE_EXISTING_URI, Settings.System.DEFAULT_NOTIFICATION_URI);
             }
 
             startActivityForResult(intent, REQUEST_CODE_ALERT_RINGTONE);
             return true;
-        } else {
+        }
+        else {
             return super.onPreferenceTreeClick(preference);
         }
     }
@@ -155,11 +158,13 @@ public class SettingsFragment extends PreferenceFragmentCompat implements Shared
             SharedPreferences.Editor editor = settingsFile.edit();
             if (ringtone != null) {
                 editor.putString(SELECTED_RINGTONE, ringtone.toString()).apply();
-            } else {
+            }
+            else {
                 //"Silent" was selected
                 editor.putString(SELECTED_RINGTONE, SILENT_SELECTED).apply();
             }
-        } else {
+        }
+        else {
             super.onActivityResult(requestCode, resultCode, data);
         }
     }
@@ -169,19 +174,19 @@ public class SettingsFragment extends PreferenceFragmentCompat implements Shared
         updatePreferenceVisibility();
     }
 
-    private void updatePreferenceVisibility(){
-        if(isLoggedIn&& prefs_type==PREFS_TYPE.GUEST) {
+    private void updatePreferenceVisibility() {
+        if (isLoggedIn && prefs_type == PREFS_TYPE.GUEST) {
             prefs_type = PREFS_TYPE.USER;
             setPreferencesFromResource(R.xml.app_preferences_user, getPreferenceScreen().getKey());
-            if(!defaultHomeTabEntries.contains(UNREAD)){
+            if (!defaultHomeTabEntries.contains(UNREAD)) {
                 defaultHomeTabEntries.add(UNREAD);
                 defaultHomeTabValues.add("2");
             }
         }
-        else if(!isLoggedIn&&prefs_type==PREFS_TYPE.USER){
+        else if (!isLoggedIn && prefs_type == PREFS_TYPE.USER) {
             prefs_type = PREFS_TYPE.GUEST;
-            setPreferencesFromResource(R.xml.app_preferences_guest,getPreferenceScreen().getKey());
-            if(defaultHomeTabEntries.contains(UNREAD)){
+            setPreferencesFromResource(R.xml.app_preferences_guest, getPreferenceScreen().getKey());
+            if (defaultHomeTabEntries.contains(UNREAD)) {
                 defaultHomeTabEntries.remove(UNREAD);
                 defaultHomeTabValues.remove("2");
             }
@@ -199,27 +204,29 @@ public class SettingsFragment extends PreferenceFragmentCompat implements Shared
         boolean enabled;
         if (key.equals(getString(R.string.pref_privacy_crashlytics_enable_key))) {
             enabled = sharedPreferences.getBoolean(key, false);
-            if(enabled)
+            if (enabled)
                 BaseApplication.getInstance().setFirebaseCrashlyticsEnabled(true);
             else {
                 Timber.i("Crashlytics collection will be disabled after restarting.");
                 BaseApplication.getInstance().setFirebaseCrashlyticsEnabled(false);
                 displayRestartAppToTakeEffectToast();
             }
-        } else if (key.equals(getString(R.string.pref_privacy_analytics_enable_key))) {
+        }
+        else if (key.equals(getString(R.string.pref_privacy_analytics_enable_key))) {
             enabled = sharedPreferences.getBoolean(key, false);
             BaseApplication.getInstance().setFirebaseAnalyticsEnabled(enabled);
-            if(enabled)
+            if (enabled)
                 Timber.i("Analytics collection enabled.");
             else
                 Timber.i("Analytics collection disabled.");
-        } else if (key.equals(getString(R.string.pref_app_display_relative_time_key))
-                && BaseApplication.getInstance().isDisplayRelativeTimeEnabled()!=sharedPreferences.getBoolean(key, false)){
-                displayRestartAppToTakeEffectToast();
+        }
+        else if (key.equals(getString(R.string.pref_app_display_relative_time_key))
+                && BaseApplication.getInstance().isDisplayRelativeTimeEnabled() != sharedPreferences.getBoolean(key, false)) {
+            displayRestartAppToTakeEffectToast();
         }
     }
 
-    private void displayRestartAppToTakeEffectToast(){
+    private void displayRestartAppToTakeEffectToast() {
         Toast.makeText(BaseApplication.getInstance().getApplicationContext(), "This change will take effect once you restart the app.", Toast.LENGTH_SHORT).show();
     }
 }
\ No newline at end of file
diff --git a/app/src/main/java/gr/thmmy/mthmmy/activities/shoutbox/SendShoutTask.java b/app/src/main/java/gr/thmmy/mthmmy/activities/shoutbox/SendShoutTask.java
index 171be1e3..027639f0 100644
--- a/app/src/main/java/gr/thmmy/mthmmy/activities/shoutbox/SendShoutTask.java
+++ b/app/src/main/java/gr/thmmy/mthmmy/activities/shoutbox/SendShoutTask.java
@@ -37,7 +37,6 @@ public class SendShoutTask extends NetworkTask {
     }
 
 
-
     @Override
     protected Void performTask(Document document, Response response) {
         return null;
diff --git a/app/src/main/java/gr/thmmy/mthmmy/activities/shoutbox/ShoutAdapter.java b/app/src/main/java/gr/thmmy/mthmmy/activities/shoutbox/ShoutAdapter.java
index f2c7d192..16979c00 100644
--- a/app/src/main/java/gr/thmmy/mthmmy/activities/shoutbox/ShoutAdapter.java
+++ b/app/src/main/java/gr/thmmy/mthmmy/activities/shoutbox/ShoutAdapter.java
@@ -59,7 +59,8 @@ public class ShoutAdapter extends CustomRecyclerView.Adapter {
             Intent intent = new Intent(context, ProfileActivity.class);
@@ -125,7 +126,8 @@ public class ShoutAdapter extends CustomRecyclerView.Adapter");
                 for (int i = 0; i < errors.length; ++i) { //TODO test
                     Timber.d(String.valueOf(i));
diff --git a/app/src/main/java/gr/thmmy/mthmmy/activities/topic/TopicActivity.java b/app/src/main/java/gr/thmmy/mthmmy/activities/topic/TopicActivity.java
index 1bc7da95..fe8529b0 100644
--- a/app/src/main/java/gr/thmmy/mthmmy/activities/topic/TopicActivity.java
+++ b/app/src/main/java/gr/thmmy/mthmmy/activities/topic/TopicActivity.java
@@ -198,7 +198,8 @@ public class TopicActivity extends BaseActivity implements TopicAdapter.OnPostFo
         if (!sessionManager.isLoggedIn()) {
             replyFAB.hide();
             replyFAB.setTag(false);
-        } else {
+        }
+        else {
             replyFAB.setOnClickListener(view -> {
                 if (sessionManager.isLoggedIn())
                     viewModel.prepareForReply();
@@ -279,10 +280,12 @@ public class TopicActivity extends BaseActivity implements TopicAdapter.OnPostFo
         if (drawer.isDrawerOpen()) {
             drawer.closeDrawer();
             return;
-        } else if (emojiKeyboard.getVisibility() == View.VISIBLE) {
+        }
+        else if (emojiKeyboard.getVisibility() == View.VISIBLE) {
             emojiKeyboard.setVisibility(View.GONE);
             return;
-        } else if (viewModel.isWritingReply()) {
+        }
+        else if (viewModel.isWritingReply()) {
             // persist reply
             SharedPreferences drafts = getSharedPreferences(getString(R.string.pref_topic_drafts_key), MODE_PRIVATE);
             Post reply = (Post) topicItems.get(topicItems.size() - 1);
@@ -296,7 +299,8 @@ public class TopicActivity extends BaseActivity implements TopicAdapter.OnPostFo
             replyFAB.setTag(true);
             bottomNavBar.setVisibility(View.VISIBLE);
             return;
-        } else if (viewModel.isEditingPost()) {
+        }
+        else if (viewModel.isEditingPost()) {
             ((Post) topicItems.get(viewModel.getPostBeingEditedPosition())).setPostType(Post.TYPE_POST);
             topicAdapter.notifyItemChanged(viewModel.getPostBeingEditedPosition());
             topicAdapter.setBackButtonHidden();
@@ -319,9 +323,9 @@ public class TopicActivity extends BaseActivity implements TopicAdapter.OnPostFo
     @Override
     protected void onDestroy() {
         super.onDestroy();
-        if(topicInfoDialog!=null){
+        if (topicInfoDialog != null) {
             topicInfoDialog.dismiss();
-            topicInfoDialog=null;
+            topicInfoDialog = null;
         }
         recyclerView.setAdapter(null);
         viewModel.stopLoading();
@@ -364,7 +368,8 @@ public class TopicActivity extends BaseActivity implements TopicAdapter.OnPostFo
             if (autoIncrement) {
                 viewModel.incrementPageRequestValue(step, false);
                 repeatUpdateHandler.postDelayed(new RepetitiveUpdater(step), REPEAT_DELAY);
-            } else if (autoDecrement) {
+            }
+            else if (autoDecrement) {
                 viewModel.decrementPageRequestValue(step, false);
                 repeatUpdateHandler.postDelayed(new RepetitiveUpdater(step), REPEAT_DELAY);
             }
@@ -383,19 +388,23 @@ public class TopicActivity extends BaseActivity implements TopicAdapter.OnPostFo
             previousPage.setEnabled(false);
             nextPage.setEnabled(false);
             lastPage.setEnabled(false);
-        } else if (exception == previousPage) {
+        }
+        else if (exception == previousPage) {
             firstPage.setEnabled(false);
             nextPage.setEnabled(false);
             lastPage.setEnabled(false);
-        } else if (exception == nextPage) {
+        }
+        else if (exception == nextPage) {
             firstPage.setEnabled(false);
             previousPage.setEnabled(false);
             lastPage.setEnabled(false);
-        } else if (exception == lastPage) {
+        }
+        else if (exception == lastPage) {
             firstPage.setEnabled(false);
             previousPage.setEnabled(false);
             nextPage.setEnabled(false);
-        } else {
+        }
+        else {
             paginationEnabled(false);
         }
     }
@@ -406,7 +415,8 @@ public class TopicActivity extends BaseActivity implements TopicAdapter.OnPostFo
         increment.setOnClickListener(v -> {
             if (!autoIncrement && step == LARGE_STEP) {
                 viewModel.setPageIndicatorIndex(viewModel.getPageCount(), true);
-            } else if (!autoIncrement) {
+            }
+            else if (!autoIncrement) {
                 viewModel.incrementPageRequestValue(step, true);
             }
         });
@@ -428,11 +438,13 @@ public class TopicActivity extends BaseActivity implements TopicAdapter.OnPostFo
             public boolean onTouch(View v, MotionEvent event) {
                 if (event.getAction() == MotionEvent.ACTION_DOWN) {
                     rect = new Rect(v.getLeft(), v.getTop(), v.getRight(), v.getBottom());
-                } else if (rect != null && event.getAction() == MotionEvent.ACTION_UP && autoIncrement) {
+                }
+                else if (rect != null && event.getAction() == MotionEvent.ACTION_UP && autoIncrement) {
                     autoIncrement = false;
                     paginationEnabled(true);
                     viewModel.loadPageIndicated();
-                } else if (rect != null && event.getAction() == MotionEvent.ACTION_MOVE) {
+                }
+                else if (rect != null && event.getAction() == MotionEvent.ACTION_MOVE) {
                     if (!rect.contains(v.getLeft() + (int) event.getX(), v.getTop() + (int) event.getY())) {
                         autoIncrement = false;
                         viewModel.setPageIndicatorIndex(viewModel.getCurrentPageIndex(), false);
@@ -450,7 +462,8 @@ public class TopicActivity extends BaseActivity implements TopicAdapter.OnPostFo
         decrement.setOnClickListener(v -> {
             if (!autoDecrement && step == LARGE_STEP) {
                 viewModel.setPageIndicatorIndex(1, true);
-            } else if (!autoDecrement) {
+            }
+            else if (!autoDecrement) {
                 viewModel.decrementPageRequestValue(step, true);
             }
         });
@@ -472,11 +485,13 @@ public class TopicActivity extends BaseActivity implements TopicAdapter.OnPostFo
             public boolean onTouch(View v, MotionEvent event) {
                 if (event.getAction() == MotionEvent.ACTION_DOWN) {
                     rect = new Rect(v.getLeft(), v.getTop(), v.getRight(), v.getBottom());
-                } else if (event.getAction() == MotionEvent.ACTION_UP && autoDecrement) {
+                }
+                else if (event.getAction() == MotionEvent.ACTION_UP && autoDecrement) {
                     autoDecrement = false;
                     paginationEnabled(true);
                     viewModel.loadPageIndicated();
-                } else if (event.getAction() == MotionEvent.ACTION_MOVE) {
+                }
+                else if (event.getAction() == MotionEvent.ACTION_MOVE) {
                     if (rect != null &&
                             !rect.contains(v.getLeft() + (int) event.getX(), v.getTop() + (int) event.getY())) {
                         autoIncrement = false;
@@ -514,7 +529,8 @@ public class TopicActivity extends BaseActivity implements TopicAdapter.OnPostFo
             if (resultCode == NetworkResultCodes.SUCCESSFUL) {
                 Timber.i("Post deleted successfully");
                 viewModel.reloadPage();
-            } else {
+            }
+            else {
                 Timber.w("Failed to delete post");
                 Toast.makeText(BaseApplication.getInstance().getApplicationContext(), "Delete failed!", Toast.LENGTH_SHORT).show();
             }
@@ -551,7 +567,8 @@ public class TopicActivity extends BaseActivity implements TopicAdapter.OnPostFo
                         if ((((Post) topicItems.get(topicItems.size() - 1)).getPostNumber() + 1) % 15 == 0) {
                             Timber.i("Reply was posted in new page. Switching to last page.");
                             viewModel.loadUrl(ParseHelpers.getBaseURL(viewModel.getTopicUrl()) + "." + 2147483647);
-                        } else {
+                        }
+                        else {
                             viewModel.reloadPage();
                         }
                         break;
@@ -621,7 +638,8 @@ public class TopicActivity extends BaseActivity implements TopicAdapter.OnPostFo
                     bottomNavBar.setVisibility(View.VISIBLE);
                     viewModel.setEditingPost(false);
                     viewModel.reloadPage();
-                } else {
+                }
+                else {
                     Timber.i("Post edit unsuccessful");
                     Toast.makeText(BaseApplication.getInstance().getApplicationContext(), "Edit failed!", Toast.LENGTH_SHORT).show();
                     recyclerView.getChildAt(viewModel.getPostBeingEditedPosition()).setAlpha(1);
@@ -689,7 +707,8 @@ public class TopicActivity extends BaseActivity implements TopicAdapter.OnPostFo
             if (replyPageUrl == null) {
                 replyFAB.hide();
                 replyFAB.setTag(false);
-            } else {
+            }
+            else {
                 replyFAB.show();
                 replyFAB.setTag(true);
             }
@@ -742,7 +761,8 @@ public class TopicActivity extends BaseActivity implements TopicAdapter.OnPostFo
                             errorTextview.setVisibility(View.GONE);
                             recyclerView.setVisibility(View.VISIBLE);
                         });
-                    } else {
+                    }
+                    else {
                         // a page has already been loaded
                         viewModel.setPageIndicatorIndex(viewModel.getCurrentPageIndex(), false);
                         snackbar = Snackbar.make(findViewById(R.id.main_content),
@@ -787,7 +807,8 @@ public class TopicActivity extends BaseActivity implements TopicAdapter.OnPostFo
                 replyFAB.hide();
                 replyFAB.setTag(false);
                 bottomNavBar.setVisibility(View.GONE);
-            } else {
+            }
+            else {
                 Timber.i("Prepare for reply unsuccessful");
                 Snackbar.make(findViewById(R.id.main_content), getString(R.string.generic_network_error), Snackbar.LENGTH_SHORT).show();
             }
@@ -803,16 +824,19 @@ public class TopicActivity extends BaseActivity implements TopicAdapter.OnPostFo
                 replyFAB.hide();
                 replyFAB.setTag(false);
                 bottomNavBar.setVisibility(View.GONE);
-            } else {
+            }
+            else {
                 Timber.i("Prepare for edit unsuccessful");
                 Snackbar.make(findViewById(R.id.main_content), getString(R.string.generic_network_error), Snackbar.LENGTH_SHORT).show();
             }
         });
     }
 
-    /**This method sets a long click listener on the title of the topic. Once the
+    /**
+     * This method sets a long click listener on the title of the topic. Once the
      * listener gets triggered, it copies the link url of the topic in the clipboard.
-     * This method is getting called on the onCreate() of the TopicActivity*/
+     * This method is getting called on the onCreate() of the TopicActivity
+     */
     void setToolbarOnLongClickListener(String url) {
         toolbar.setOnLongClickListener(view -> {
             //Try to set the clipboard text
diff --git a/app/src/main/java/gr/thmmy/mthmmy/activities/topic/TopicAdapter.java b/app/src/main/java/gr/thmmy/mthmmy/activities/topic/TopicAdapter.java
index 0f0b544c..d9267db4 100644
--- a/app/src/main/java/gr/thmmy/mthmmy/activities/topic/TopicAdapter.java
+++ b/app/src/main/java/gr/thmmy/mthmmy/activities/topic/TopicAdapter.java
@@ -129,7 +129,8 @@ class TopicAdapter extends RecyclerView.Adapter {
             View itemView = LayoutInflater.from(parent.getContext())
                     .inflate(R.layout.activity_topic_post_row, parent, false);
             return new PostViewHolder(itemView);
-        } else if (viewType == Post.TYPE_QUICK_REPLY) {
+        }
+        else if (viewType == Post.TYPE_QUICK_REPLY) {
             View view = LayoutInflater.from(parent.getContext()).
                     inflate(R.layout.activity_topic_quick_reply_row, parent, false);
 
@@ -143,7 +144,8 @@ class TopicAdapter extends RecyclerView.Adapter {
             quickReplyText.requestFocus();
 
             return new QuickReplyViewHolder(view);
-        } else if (viewType == Post.TYPE_EDIT) {
+        }
+        else if (viewType == Post.TYPE_EDIT) {
             View view = LayoutInflater.from(parent.getContext()).
                     inflate(R.layout.activity_topic_edit_row, parent, false);
 
@@ -157,11 +159,13 @@ class TopicAdapter extends RecyclerView.Adapter {
             editPostEdittext.requestFocus();
 
             return new EditMessageViewHolder(view);
-        } else if (viewType == Poll.TYPE_POLL) {
+        }
+        else if (viewType == Poll.TYPE_POLL) {
             View view = LayoutInflater.from(parent.getContext()).
                     inflate(R.layout.activity_topic_poll, parent, false);
             return new PollViewHolder(view);
-        } else {
+        }
+        else {
             throw new IllegalArgumentException("Unknown view type");
         }
     }
@@ -227,7 +231,8 @@ class TopicAdapter extends RecyclerView.Adapter {
                 holder.voteChart.setVisibility(View.GONE);
                 holder.selectedEntry.setVisibility(View.GONE);
                 holder.optionsLayout.setVisibility(View.VISIBLE);
-            } else if (poll.getAvailableVoteCount() == 1) {
+            }
+            else if (poll.getAvailableVoteCount() == 1) {
                 // vote single option
                 RadioGroup radioGroup = new RadioGroup(context);
                 for (int i = 0; i < entries.length; i++) {
@@ -236,7 +241,8 @@ class TopicAdapter extends RecyclerView.Adapter {
                     radioButton.setMovementMethod(LinkMovementMethod.getInstance());
                     if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
                         radioButton.setText(Html.fromHtml(entries[i].getEntryName(), Html.FROM_HTML_MODE_LEGACY));
-                    } else
+                    }
+                    else
                         radioButton.setText(Html.fromHtml(entries[i].getEntryName()));
 
                     radioButton.setText(ThmmyParser.html2span(context, entries[i].getEntryName()));
@@ -247,7 +253,8 @@ class TopicAdapter extends RecyclerView.Adapter {
                 holder.voteChart.setVisibility(View.GONE);
                 holder.selectedEntry.setVisibility(View.GONE);
                 holder.optionsLayout.setVisibility(View.VISIBLE);
-            } else if (poll.isPollResultsHidden()) {
+            }
+            else if (poll.isPollResultsHidden()) {
                 // vote already submitted but results are hidden
                 Poll.Entry[] entries1 = poll.getEntries();
                 for (int i = 0; i < entries1.length; i++) {
@@ -272,7 +279,8 @@ class TopicAdapter extends RecyclerView.Adapter {
                 holder.voteChart.setVisibility(View.GONE);
                 holder.selectedEntry.setVisibility(View.GONE);
                 holder.optionsLayout.setVisibility(View.VISIBLE);
-            } else {
+            }
+            else {
                 // Showing results
                 holder.optionsLayout.setVisibility(View.GONE);
 
@@ -331,16 +339,19 @@ class TopicAdapter extends RecyclerView.Adapter {
             if (poll.getRemoveVoteUrl() != null) {
                 holder.removeVotesButton.setOnClickListener(v -> viewModel.removeVote());
                 holder.removeVotesButton.setVisibility(View.VISIBLE);
-            } else holder.removeVotesButton.setVisibility(View.GONE);
+            }
+            else holder.removeVotesButton.setVisibility(View.GONE);
             if (poll.getShowVoteResultsUrl() != null) {
                 holder.showPollResultsButton.setOnClickListener(v -> viewModel.loadUrl(poll.getShowVoteResultsUrl()));
                 holder.showPollResultsButton.setVisibility(View.VISIBLE);
-            } else holder.showPollResultsButton.setVisibility(View.GONE);
+            }
+            else holder.showPollResultsButton.setVisibility(View.GONE);
 
             if (poll.getShowOptionsUrl() != null) {
                 holder.hidePollResultsButton.setOnClickListener(v -> viewModel.loadUrl(poll.getShowOptionsUrl()));
                 holder.hidePollResultsButton.setVisibility(View.VISIBLE);
-            } else holder.hidePollResultsButton.setVisibility(View.GONE);
+            }
+            else holder.hidePollResultsButton.setVisibility(View.GONE);
             if (poll.getPollFormUrl() != null) {
                 holder.submitButton.setOnClickListener(v -> {
                     if (!viewModel.submitVote(holder.optionsLayout)) {
@@ -351,8 +362,10 @@ class TopicAdapter extends RecyclerView.Adapter {
                     }
                 });
                 holder.submitButton.setVisibility(View.VISIBLE);
-            } else holder.submitButton.setVisibility(View.GONE);
-        } else {
+            }
+            else holder.submitButton.setVisibility(View.GONE);
+        }
+        else {
             Post currentPost = (Post) topicItems.get(position);
             if (currentHolder instanceof PostViewHolder) {
                 final PostViewHolder holder = (PostViewHolder) currentHolder;
@@ -382,7 +395,8 @@ class TopicAdapter extends RecyclerView.Adapter {
                         int filesTextColor;
                         if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
                             filesTextColor = context.getResources().getColor(R.color.accent, null);
-                        } else
+                        }
+                        else
                             filesTextColor = context.getResources().getColor(R.color.accent);
 
                         for (final ThmmyFile attachedFile : currentPost.getAttachedFiles()) {
@@ -405,7 +419,8 @@ class TopicAdapter extends RecyclerView.Adapter {
                         int lastEditTextColor;
                         if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
                             lastEditTextColor = context.getResources().getColor(R.color.white, null);
-                        } else
+                        }
+                        else
                             lastEditTextColor = context.getResources().getColor(R.color.white);
 
                         final TextView lastEdit = new TextView(context);
@@ -415,7 +430,8 @@ class TopicAdapter extends RecyclerView.Adapter {
                         lastEdit.setPadding(0, 3, 0, 3);
                         holder.postFooter.addView(lastEdit);
                     }
-                } else {
+                }
+                else {
                     holder.bodyFooterDivider.setVisibility(View.GONE);
                     holder.postFooter.removeAllViews();
                 }
@@ -430,7 +446,8 @@ class TopicAdapter extends RecyclerView.Adapter {
                     mNumberOfPosts = currentPost.getNumberOfPosts();
                     mPersonalText = currentPost.getPersonalText();
                     mNumberOfStars = currentPost.getNumberOfStars();
-                } else {
+                }
+                else {
                     mSpecialRank = null;
                     mRank = null;
                     mGender = null;
@@ -443,27 +460,32 @@ class TopicAdapter extends RecyclerView.Adapter {
                 if (!Objects.equals(mSpecialRank, "") && mSpecialRank != null) {
                     holder.specialRank.setText(mSpecialRank);
                     holder.specialRank.setVisibility(View.VISIBLE);
-                } else
+                }
+                else
                     holder.specialRank.setVisibility(View.GONE);
                 if (!Objects.equals(mRank, "") && mRank != null) {
                     holder.rank.setText(mRank);
                     holder.rank.setVisibility(View.VISIBLE);
-                } else
+                }
+                else
                     holder.rank.setVisibility(View.GONE);
                 if (!Objects.equals(mGender, "") && mGender != null) {
                     holder.gender.setText(mGender);
                     holder.gender.setVisibility(View.VISIBLE);
-                } else
+                }
+                else
                     holder.gender.setVisibility(View.GONE);
                 if (!Objects.equals(mNumberOfPosts, "") && mNumberOfPosts != null) {
                     holder.numberOfPosts.setText(mNumberOfPosts);
                     holder.numberOfPosts.setVisibility(View.VISIBLE);
-                } else
+                }
+                else
                     holder.numberOfPosts.setVisibility(View.GONE);
                 if (!Objects.equals(mPersonalText, "") && mPersonalText != null) {
                     holder.personalText.setText("\"" + mPersonalText + "\"");
                     holder.personalText.setVisibility(View.VISIBLE);
-                } else
+                }
+                else
                     holder.personalText.setVisibility(View.GONE);
                 if (mUserColor != USER_COLOR_YELLOW)
                     holder.username.setTextColor(mUserColor);
@@ -482,25 +504,30 @@ class TopicAdapter extends RecyclerView.Adapter {
                     holder.stars.setText(usersStars.toString());
                     holder.stars.setTextColor(mUserColor);
                     holder.stars.setVisibility(View.VISIBLE);
-                } else
+                }
+                else
                     holder.stars.setVisibility(View.GONE);
 
                 if (currentPost.isUserMentionedInPost()) {
                     if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
                         holder.cardChildLinear.setBackground(context.getResources().
                                 getDrawable(R.drawable.mention_card, null));
-                    } else
+                    }
+                    else
                         holder.cardChildLinear.setBackground(context.getResources().
                                 getDrawable(R.drawable.mention_card));
-                } else if (mUserColor == TopicParser.USER_COLOR_PINK) {
+                }
+                else if (mUserColor == TopicParser.USER_COLOR_PINK) {
                     //Special card for special member of the month!
                     if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
                         holder.cardChildLinear.setBackground(context.getResources().
                                 getDrawable(R.drawable.member_of_the_month_card, null));
-                    } else
+                    }
+                    else
                         holder.cardChildLinear.setBackground(context.getResources().
                                 getDrawable(R.drawable.member_of_the_month_card));
-                } else holder.cardChildLinear.setBackground(null);
+                }
+                else holder.cardChildLinear.setBackground(null);
 
                 //Avoid's view's visibility recycling
                 if (!currentPost.isDeleted() && viewModel.isUserExtraInfoVisible(holder.getAdapterPosition())) {
@@ -513,7 +540,8 @@ class TopicAdapter extends RecyclerView.Adapter {
                     holder.subject.setTextColor(Color.parseColor("#FFFFFF"));
                     holder.subject.setMaxLines(Integer.MAX_VALUE);
                     holder.subject.setEllipsize(null);
-                } else {
+                }
+                else {
                     holder.userExtraInfo.setVisibility(View.GONE);
                     holder.userExtraInfo.setAlpha(0.0f);
 
@@ -554,7 +582,8 @@ class TopicAdapter extends RecyclerView.Adapter {
                                 holder.subject, Color.parseColor("#FFFFFF"),
                                 Color.parseColor("#757575"), (LinearLayout) v);
                     });
-                } else {
+                }
+                else {
                     holder.header.setOnClickListener(null);
                     holder.userExtraInfo.setOnClickListener(null);
                 }
@@ -636,7 +665,8 @@ class TopicAdapter extends RecyclerView.Adapter {
                             holder.quoteToggle.setImageResource(R.drawable.ic_format_quote_unchecked_24dp);
                     });
                 }
-            } else if (currentHolder instanceof QuickReplyViewHolder) {
+            }
+            else if (currentHolder instanceof QuickReplyViewHolder) {
                 final QuickReplyViewHolder holder = (QuickReplyViewHolder) currentHolder;
                 Post reply = (Post) topicItems.get(position);
 
@@ -647,7 +677,8 @@ class TopicAdapter extends RecyclerView.Adapter {
                 holder.itemView.setEnabled(true);
                 if (reply.getSubject() != null) {
                     holder.quickReplySubject.setText(reply.getSubject());
-                } else {
+                }
+                else {
                     holder.quickReplySubject.setText("Re: " + viewModel.getTopicTitle().getValue());
                 }
                 holder.quickReplySubject.setRawInputType(InputType.TYPE_CLASS_TEXT);
@@ -700,10 +731,11 @@ class TopicAdapter extends RecyclerView.Adapter {
                     backPressHidden = false;
                 }
                 holder.quickReplySubject.addTextChangedListener(createTextWatcher(holder, TextWatcherType.SUBJECT));
-            } else if (currentHolder instanceof EditMessageViewHolder) {
+            }
+            else if (currentHolder instanceof EditMessageViewHolder) {
                 final EditMessageViewHolder holder = (EditMessageViewHolder) currentHolder;
 
-                loadAvatar(getSessionManager().getAvatarLink(), holder.thumbnail,  holder.itemView.getContext());
+                loadAvatar(getSessionManager().getAvatarLink(), holder.thumbnail, holder.itemView.getContext());
 
                 holder.username.setText(getSessionManager().getUsername());
                 holder.editSubject.setText(currentPost.getSubject());
@@ -749,33 +781,36 @@ class TopicAdapter extends RecyclerView.Adapter {
     private enum TextWatcherType {
         CONTENT, SUBJECT
     }
-    private TextWatcher createTextWatcher(@NonNull final RecyclerView.ViewHolder holder, TextWatcherType type){
+
+    private TextWatcher createTextWatcher(@NonNull final RecyclerView.ViewHolder holder, TextWatcherType type) {
         return new TextWatcher() {
             @Override
-            public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) { }
+            public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) {
+            }
 
             @Override
             public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {
                 int position = holder.getAdapterPosition();
-                if (position >= 0 && position < topicItems.size()){
+                if (position >= 0 && position < topicItems.size()) {
                     Post post = ((Post) topicItems.get(position));
-                    if(type == TextWatcherType.CONTENT)
+                    if (type == TextWatcherType.CONTENT)
                         post.setBbContent(charSequence.toString());
-                    else if(type == TextWatcherType.SUBJECT)
+                    else if (type == TextWatcherType.SUBJECT)
                         post.setSubject(charSequence.toString());
                 }
             }
 
             @Override
-            public void afterTextChanged(Editable editable) { }
+            public void afterTextChanged(Editable editable) {
+            }
         };
     }
 
     private void loadAvatar(String imageUrl, ImageView imageView, Context context) {
-        if(imageUrl!=null)
+        if (imageUrl != null)
             imageUrl = imageUrl.trim();
 
-        if(isValidContextForGlide(context)) {
+        if (isValidContextForGlide(context)) {
             Glide.with(context)
                     .load(imageUrl)
                     .circleCrop()
@@ -948,7 +983,8 @@ class TopicAdapter extends RecyclerView.Adapter {
                                 return true;
                             }
                         }
-                    } else if ((Objects.equals(uriString, ParseHelpers.getBaseURL(viewModel.getTopicUrl())) &&
+                    }
+                    else if ((Objects.equals(uriString, ParseHelpers.getBaseURL(viewModel.getTopicUrl())) &&
                             viewModel.getCurrentPageIndex() == 1) ||
                             Integer.parseInt(uriString.substring(ParseHelpers.getBaseURL(viewModel.getTopicUrl()).length() + 1)) / 15 + 1 ==
                                     viewModel.getCurrentPageIndex()) {
@@ -964,7 +1000,8 @@ class TopicAdapter extends RecyclerView.Adapter {
                 intent.setFlags(FLAG_ACTIVITY_NEW_TASK);
                 context.startActivity(intent);
                 return true;
-            } else if (target.is(ThmmyPage.PageCategory.BOARD)) {
+            }
+            else if (target.is(ThmmyPage.PageCategory.BOARD)) {
                 Intent intent = new Intent(context, BoardActivity.class);
                 Bundle extras = new Bundle();
                 extras.putString(BUNDLE_BOARD_URL, uriString);
@@ -973,7 +1010,8 @@ class TopicAdapter extends RecyclerView.Adapter {
                 intent.setFlags(FLAG_ACTIVITY_NEW_TASK);
                 context.startActivity(intent);
                 return true;
-            } else if (target.is(ThmmyPage.PageCategory.PROFILE)) {
+            }
+            else if (target.is(ThmmyPage.PageCategory.PROFILE)) {
                 Intent intent = new Intent(context, ProfileActivity.class);
                 Bundle extras = new Bundle();
                 extras.putString(BUNDLE_PROFILE_URL, uriString);
diff --git a/app/src/main/java/gr/thmmy/mthmmy/activities/topic/TopicParser.java b/app/src/main/java/gr/thmmy/mthmmy/activities/topic/TopicParser.java
index f89e6717..609348b4 100644
--- a/app/src/main/java/gr/thmmy/mthmmy/activities/topic/TopicParser.java
+++ b/app/src/main/java/gr/thmmy/mthmmy/activities/topic/TopicParser.java
@@ -37,7 +37,7 @@ import timber.log.Timber;
 public class TopicParser {
     private static Pattern mentionsPattern = Pattern.
             compile("
\\n\\s+?(Quote from|Παράθεση από): " - + BaseActivity.getSessionManager().getUsername() +"\\s(στις|on)"); + + BaseActivity.getSessionManager().getUsername() + "\\s(στις|on)"); //User colors private static final int USER_COLOR_BLACK = Color.parseColor("#000000"); @@ -87,7 +87,8 @@ public class TopicParser { break; } } - } else { + } + else { Elements findCurrentPage = topic.select("td:contains(Pages:)>b"); for (Element item : findCurrentPage) { @@ -125,7 +126,8 @@ public class TopicParser { returnPages = Integer.parseInt(item.text()); } } - } else { + } + else { Elements pages = topic.select("td:contains(Pages:)>a.navPages"); if (pages.size() != 0) { @@ -220,7 +222,8 @@ public class TopicParser { if (postIndex != null) { String tmp = postIndex.attr("name"); p_postIndex = Integer.parseInt(tmp.substring(tmp.indexOf("msg") + 3)); - } else { + } + else { postIndex = thisRow.select("div[id^=subject]").first(); if (postIndex == null) p_postIndex = NO_INDEX; @@ -246,7 +249,8 @@ public class TopicParser { .first().text(); p_userName = p_userName.substring(0, p_userName.indexOf(" Επισκέπτης")); p_userColor = USER_COLOR_YELLOW; - } else { + } + else { p_userName = userName.html(); p_profileURL = userName.attr("href"); } @@ -271,7 +275,8 @@ public class TopicParser { Element postNum = thisRow.select("div.smalltext:matches(Απάντηση #)").first(); if (postNum == null) { //Topic starter p_postNum = 0; - } else { + } + else { String tmp_str = postNum.text().substring(12); p_postNum = Integer.parseInt(tmp_str.substring(0, tmp_str.indexOf(" στις"))); } @@ -306,7 +311,8 @@ public class TopicParser { p_attachedFiles.add(new ThmmyFile(attachedUrl, attachedFileName, attachedFileInfo)); } } - } else { + } + else { //Finds username userName = thisRow.select("a[title^=View the profile of]").first(); if (userName == null) { //Deleted profile @@ -316,7 +322,8 @@ public class TopicParser { .first().text(); p_userName = p_userName.substring(0, p_userName.indexOf(" Guest")); p_userColor = USER_COLOR_YELLOW; - } else { + } + else { p_userName = userName.html(); p_profileURL = userName.attr("href"); } @@ -343,7 +350,8 @@ public class TopicParser { Element postNum = thisRow.select("div.smalltext:matches(Reply #)").first(); if (postNum == null) { //Topic starter p_postNum = 0; - } else { + } + else { String tmp_str = postNum.text().substring(9); p_postNum = Integer.parseInt(tmp_str.substring(0, tmp_str.indexOf(" on"))); } @@ -409,7 +417,8 @@ public class TopicParser { .attr("abs:src")); } } - } else { + } + else { for (String line : infoList) { if (line.contains("Posts:")) { postsLineIndex = infoList.indexOf(line); @@ -437,7 +446,8 @@ public class TopicParser { if (starsLineIndex == -1 || starsLineIndex == 1) { p_rank = infoList.get(0).trim(); //First line has the rank p_specialRank = null; //They don't have a special rank - } else if (starsLineIndex == 2) { //This member has a special rank + } + else if (starsLineIndex == 2) { //This member has a special rank p_specialRank = infoList.get(0).trim(); //First line has the special rank p_rank = infoList.get(1).trim(); //Second line has the rank } @@ -467,7 +477,8 @@ public class TopicParser { , p_attachedFiles, p_postLastEditDate, p_postURL, p_deletePostURL, p_editPostURL , p_isUserMentionedInPost, Post.TYPE_POST)); - } else { //Deleted user + } + else { //Deleted user //Add new post in postsList, only standard information needed parsedPostsList.add(new Post(p_thumbnailURL, p_userName, p_subject, p_post , null, p_postIndex, p_postNum, p_postDate, p_userColor, p_attachedFiles @@ -516,7 +527,8 @@ public class TopicParser { availableVoteCount = Integer.parseInt(prompt.substring(integerMatcher.start(), integerMatcher.end())); } links = formTableRows.get(1).child(1).select("a"); - } else { + } + else { availableVoteCount = 1; links = formTableRows.first().child(1).select("a"); } @@ -524,7 +536,8 @@ public class TopicParser { if (links != null && links.size() > 0) { showVoteResultsUrl = links.first().attr("href"); } - } else { + } + else { // poll in results mode Elements entryRows = pollColumn.select("table[cellspacing] tr"); for (int i = 0; i < entryRows.size(); i++) { diff --git a/app/src/main/java/gr/thmmy/mthmmy/activities/topic/tasks/EditTask.java b/app/src/main/java/gr/thmmy/mthmmy/activities/topic/tasks/EditTask.java index c54d661c..2d49a5a5 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/activities/topic/tasks/EditTask.java +++ b/app/src/main/java/gr/thmmy/mthmmy/activities/topic/tasks/EditTask.java @@ -74,6 +74,7 @@ public class EditTask extends AsyncTask { public interface EditTaskCallbacks { void onEditTaskStarted(); + void onEditTaskFinished(boolean result, int position); } } diff --git a/app/src/main/java/gr/thmmy/mthmmy/activities/topic/tasks/PrepareForEditTask.java b/app/src/main/java/gr/thmmy/mthmmy/activities/topic/tasks/PrepareForEditTask.java index 5438132e..8d62aed1 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/activities/topic/tasks/PrepareForEditTask.java +++ b/app/src/main/java/gr/thmmy/mthmmy/activities/topic/tasks/PrepareForEditTask.java @@ -74,6 +74,7 @@ public class PrepareForEditTask extends AsyncTask { public interface ReplyTaskCallbacks { void onReplyTaskStarted(); + void onReplyTaskFinished(Posting.REPLY_STATUS result); } } diff --git a/app/src/main/java/gr/thmmy/mthmmy/activities/topic/tasks/TopicTask.java b/app/src/main/java/gr/thmmy/mthmmy/activities/topic/tasks/TopicTask.java index c3e78d8d..8ba72b74 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/activities/topic/tasks/TopicTask.java +++ b/app/src/main/java/gr/thmmy/mthmmy/activities/topic/tasks/TopicTask.java @@ -123,7 +123,8 @@ public class TopicTask extends AsyncTask { if (isUnauthorized(topic)) { return new TopicTaskResult(ResultCode.UNAUTHORIZED, null, null, null, 0, 0, 0, 0, null, null); - } else { + } + else { Timber.e(e, "Topic parse failed"); return new TopicTaskResult(ResultCode.PARSING_ERROR, null, null, null, 0, 0, 0, 0, null, null); @@ -149,6 +150,7 @@ public class TopicTask extends AsyncTask { public interface TopicTaskObserver { void onTopicTaskStarted(); + void onTopicTaskCancelled(); } diff --git a/app/src/main/java/gr/thmmy/mthmmy/activities/upload/UploadActivity.java b/app/src/main/java/gr/thmmy/mthmmy/activities/upload/UploadActivity.java index ea3975d9..fd98fba0 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/activities/upload/UploadActivity.java +++ b/app/src/main/java/gr/thmmy/mthmmy/activities/upload/UploadActivity.java @@ -177,7 +177,7 @@ public class UploadActivity extends BaseActivity { generateFieldsButton = findViewById(R.id.upload_title_description_builder); generateFieldsButton.setEnabled(false); generateFieldsButton.setOnClickListener(view -> { - if(uploadsCourse!=null && !uploadsCourse.getName().equals("") && !semester.equals("")){ + if (uploadsCourse != null && !uploadsCourse.getName().equals("") && !semester.equals("")) { Intent intent = new Intent(UploadActivity.this, UploadFieldsBuilderActivity.class); Bundle builderExtras = new Bundle(); builderExtras.putString(BUNDLE_UPLOAD_FIELD_BUILDER_COURSE_NAME, uploadsCourse.getName()); @@ -329,7 +329,8 @@ public class UploadActivity extends BaseActivity { tempFileUri = UploadsHelper.createTempFile(this, storage, uploadFile.getFileUri(), FileUtils.getFilenameWithoutExtension(editTextFilename)); - } else { + } + else { //Renames the photo taken String photoPath = uploadFile.getPhotoFile().getPath(); photoPath = photoPath.substring(0, photoPath.lastIndexOf(File.separator)); @@ -348,14 +349,16 @@ public class UploadActivity extends BaseActivity { uploadFile.setFileUri(FileProvider.getUriForFile(this, getPackageName() + ".provider", uploadFile.getPhotoFile())); } - } else { + } + else { requestPerms(UPLOAD_REQUEST_STORAGE_CODE); zipTask = null; dialog.cancel(); return; } } - } else { + } + else { Uri[] filesListArray = new Uri[filesList.size()]; for (int i = 0; i < filesList.size(); ++i) { filesListArray[i] = filesList.get(i).getFileUri(); @@ -368,7 +371,8 @@ public class UploadActivity extends BaseActivity { if (checkPerms()) { zipTask.execute(filesListArray); finish(); - } else { + } + else { requestPerms(UPLOAD_REQUEST_STORAGE_CODE); dialog.cancel(); } @@ -384,7 +388,8 @@ public class UploadActivity extends BaseActivity { ? filesList.get(0).getFileUri() : tempFileUri)) { finish(); - } else { + } + else { Toast.makeText(BaseApplication.getInstance().getApplicationContext(), "Couldn't initiate upload.", Toast.LENGTH_SHORT).show(); } }); @@ -406,7 +411,8 @@ public class UploadActivity extends BaseActivity { //Parses the uploads page parseUploadPageTask = new ParseUploadPageTask(); parseUploadPageTask.execute(uploadIndexUrl); - } else { + } + else { //Renders the already parsed data updateUIElements(); generateFieldsButton.setEnabled(true); @@ -465,7 +471,8 @@ public class UploadActivity extends BaseActivity { addFileViewToList(filename); filesList.add(new UploadFile(false, newFileUri, null)); } - } else { + } + else { Uri newFileUri = data.getData(); if (newFileUri != null) { String filename = FileUtils.filenameFromUri(this, newFileUri); @@ -481,23 +488,30 @@ public class UploadActivity extends BaseActivity { filename = filename.toLowerCase(); if (filename.endsWith(".jpg")) { fileIcon = "jpg_image.gif"; - } else if (filename.endsWith(".gif")) { + } + else if (filename.endsWith(".gif")) { fileIcon = "gif_image.gif"; - } else if (filename.endsWith(".png")) { + } + else if (filename.endsWith(".png")) { fileIcon = "png_image.gif"; - } else if (filename.endsWith(".html") || filename.endsWith(".htm")) { + } + else if (filename.endsWith(".html") || filename.endsWith(".htm")) { fileIcon = "html_file.gif"; - } else if (filename.endsWith(".pdf") || filename.endsWith(".doc") || + } + else if (filename.endsWith(".pdf") || filename.endsWith(".doc") || filename.endsWith("djvu")) { fileIcon = "text_file.gif"; - } else if (filename.endsWith(".zip") || filename.endsWith(".rar") || + } + else if (filename.endsWith(".zip") || filename.endsWith(".rar") || filename.endsWith(".tar") || filename.endsWith(".tar.gz") || filename.endsWith(".gz")) { fileIcon = "archive.gif"; - } else { + } + else { fileIcon = "blank.gif"; } - } else { + } + else { fileIcon = "archive.gif"; textWatcher.setFileExtension(".zip"); @@ -509,7 +523,8 @@ public class UploadActivity extends BaseActivity { filesList.add(new UploadFile(false, newFileUri, null)); } } - } else if (requestCode == AFR_REQUEST_CODE_CAMERA) { + } + else if (requestCode == AFR_REQUEST_CODE_CAMERA) { if (resultCode == Activity.RESULT_CANCELED) { //Deletes image file storage.deleteFile(photoFileCreated.getAbsolutePath()); @@ -525,7 +540,8 @@ public class UploadActivity extends BaseActivity { } fileIcon = "jpg_image.gif"; - } else { + } + else { fileIcon = "archive.gif"; textWatcher.setFileExtension(".zip"); @@ -538,7 +554,8 @@ public class UploadActivity extends BaseActivity { addFileViewToList(FileUtils.getFilenameWithoutExtension(FileUtils. filenameFromUri(this, newFile.getFileUri()))); filesList.add(newFile); - } else if (requestCode == AFR_REQUEST_CODE_FIELDS_BUILDER) { + } + else if (requestCode == AFR_REQUEST_CODE_FIELDS_BUILDER) { if (resultCode == Activity.RESULT_CANCELED) { return; } @@ -546,7 +563,8 @@ public class UploadActivity extends BaseActivity { String previousName = uploadFilename.getText().toString(); if (previousName.isEmpty()) { uploadFilename.setText(data.getStringExtra(RESULT_FILENAME)); - } else { + } + else { String extractedExtension = FileUtils.getFileExtension(previousName); String filenameWithExtension = data.getStringExtra(RESULT_FILENAME) + (extractedExtension != null ? extractedExtension : ""); @@ -556,7 +574,8 @@ public class UploadActivity extends BaseActivity { uploadTitle.setText(data.getStringExtra(RESULT_TITLE)); uploadDescription.setText(data.getStringExtra(RESULT_DESCRIPTION)); - } else { + } + else { super.onActivityResult(requestCode, resultCode, data); } } @@ -579,14 +598,15 @@ public class UploadActivity extends BaseActivity { zipTask.execute(filesListArray); finish(); - } else { + } + else { Toast.makeText(BaseApplication.getInstance().getApplicationContext(), "Please retry uploading.", Toast.LENGTH_SHORT).show(); } break; } } - private void setZipUploadFilename(){ + private void setZipUploadFilename() { String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss", Locale.FRANCE).format(new Date()); String zipFilename = "mTHMMY_" + timeStamp + ".zip"; uploadFilename.setText(zipFilename); @@ -656,7 +676,8 @@ public class UploadActivity extends BaseActivity { filesList.remove(fileIndex); if (filesList.isEmpty()) { filesListView.setVisibility(View.GONE); - } else if (filesList.size() == 1) { + } + else if (filesList.size() == 1) { textWatcher.setFileExtension(FileUtils.getFileExtension(FileUtils. filenameFromUri(this, filesList.get(0).getFileUri()))); } @@ -667,7 +688,7 @@ public class UploadActivity extends BaseActivity { } public UploadNotificationConfig getConfigForUpload(Context context, String uploadID, - String filename) { + String filename) { UploadNotificationConfig uploadNotificationConfig = new UploadNotificationConfig(); uploadNotificationConfig.setIconForAllStatuses(android.R.drawable.stat_sys_upload); uploadNotificationConfig.setTitleForAllStatuses("Uploading " + filename); @@ -764,7 +785,8 @@ public class UploadActivity extends BaseActivity { } @Override - public void onTextChanged(CharSequence s, int start, int before, int count) { } + public void onTextChanged(CharSequence s, int start, int before, int count) { + } @Override public void afterTextChanged(Editable s) { @@ -773,7 +795,8 @@ public class UploadActivity extends BaseActivity { if (filenameWithoutExtension != null && !filenameWithoutExtension.isEmpty() && !filenameWithoutExtension.matches("[0-9a-zA-Z~!@#$%^&()_+=\\-`\\[\\]{};',.]+")) { uploadFilenameInfo.setImageResource(R.drawable.ic_info_outline_warning_24dp); - } else { + } + else { uploadFilenameInfo.setImageResource(R.drawable.ic_info_outline_white_24dp); } @@ -811,7 +834,8 @@ public class UploadActivity extends BaseActivity { if (!oldFilename.isEmpty()) { newFilename = FileUtils.getFilenameWithoutExtension(oldFilename) + extension; - } else { + } + else { newFilename = extension; } @@ -888,9 +912,10 @@ public class UploadActivity extends BaseActivity { } @Override - public void onNothingSelected(AdapterView parent) { } + public void onNothingSelected(AdapterView parent) { + } - private void setCourseAndSemester(){ + private void setCourseAndSemester() { uploadsCourse = null; semester = ""; if (categorySelected.equals("-1")) return; @@ -910,12 +935,14 @@ public class UploadActivity extends BaseActivity { categoriesSpinners.getChildAt(numberOfSpinners - 2)).getSelectedItem(); } else return; - } else if (numberOfSpinners == 4) { + } + else if (numberOfSpinners == 4) { maybeSemester = (String) ((AppCompatSpinnerWithoutDefault) categoriesSpinners.getChildAt(numberOfSpinners - 3)).getSelectedItem(); maybeCourse = (String) ((AppCompatSpinnerWithoutDefault) categoriesSpinners.getChildAt(numberOfSpinners - 1)).getSelectedItem(); - } else { + } + else { maybeSemester = (String) ((AppCompatSpinnerWithoutDefault) categoriesSpinners.getChildAt(numberOfSpinners - 2)).getSelectedItem(); maybeCourse = (String) ((AppCompatSpinnerWithoutDefault) @@ -926,14 +953,14 @@ public class UploadActivity extends BaseActivity { if (maybeCourse == null) return; String retrievedCourse = maybeCourse.replaceAll("-", "") - .replaceAll("\\((πρώην|πρωην).*\\)","") - .replace("(ΝΠΣ)", "") - .trim(); + .replaceAll("\\((πρώην|πρωην).*\\)", "") + .replace("(ΝΠΣ)", "") + .trim(); - if(!retrievedCourse.isEmpty()){ + if (!retrievedCourse.isEmpty()) { UploadsCourse foundUploadsCourse = UploadsCourse.findCourse(retrievedCourse, uploadsCourses); - if(foundUploadsCourse != null){ + if (foundUploadsCourse != null) { uploadsCourse = foundUploadsCourse; semester = maybeSemester.replaceAll("-", "").trim().substring(0, 1); Timber.d("Selected course: %s, semester: %s", uploadsCourse.getName(), semester); @@ -974,25 +1001,29 @@ public class UploadActivity extends BaseActivity { if (categoryText.startsWith("- ")) { //This is a level one subcategory uploadRootCategories.get(uploadRootCategories.size() - 1).addSubCategory(categoryValue, categoryText); - } else if (categoryText.startsWith("-- ")) { + } + else if (categoryText.startsWith("-- ")) { //This is a level two subcategory UploadCategory rootLevelCategory = uploadRootCategories.get(uploadRootCategories.size() - 1); UploadCategory firstLevelCategory = rootLevelCategory.getSubCategories().get(rootLevelCategory.getSubCategories().size() - 1); firstLevelCategory.addSubCategory(categoryValue, categoryText); - } else if (categoryText.startsWith("--- ")) { + } + else if (categoryText.startsWith("--- ")) { //This is a level three subcategory UploadCategory rootLevelCategory = uploadRootCategories.get(uploadRootCategories.size() - 1); UploadCategory firstLevelCategory = rootLevelCategory.getSubCategories().get(rootLevelCategory.getSubCategories().size() - 1); UploadCategory secondLevelCategory = firstLevelCategory.getSubCategories().get(firstLevelCategory.getSubCategories().size() - 1); secondLevelCategory.addSubCategory(categoryValue, categoryText); - } else if (categoryText.startsWith("---- ")) { + } + else if (categoryText.startsWith("---- ")) { //This is a level four subcategory UploadCategory rootLevelCategory = uploadRootCategories.get(uploadRootCategories.size() - 1); UploadCategory firstLevelCategory = rootLevelCategory.getSubCategories().get(rootLevelCategory.getSubCategories().size() - 1); UploadCategory secondLevelCategory = firstLevelCategory.getSubCategories().get(firstLevelCategory.getSubCategories().size() - 1); UploadCategory thirdLevelCategory = secondLevelCategory.getSubCategories().get(secondLevelCategory.getSubCategories().size() - 1); thirdLevelCategory.addSubCategory(categoryValue, categoryText); - } else { + } + else { //This is a root category uploadRootCategories.add(new UploadCategory(categoryValue, categoryText)); } diff --git a/app/src/main/java/gr/thmmy/mthmmy/activities/upload/UploadFieldsBuilderActivity.java b/app/src/main/java/gr/thmmy/mthmmy/activities/upload/UploadFieldsBuilderActivity.java index 8e75b979..b4d88805 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/activities/upload/UploadFieldsBuilderActivity.java +++ b/app/src/main/java/gr/thmmy/mthmmy/activities/upload/UploadFieldsBuilderActivity.java @@ -49,7 +49,8 @@ public class UploadFieldsBuilderActivity extends BaseActivity { int inputYear = Integer.parseInt(working); isValidYear = inputYear <= currentYear && inputYear > 1980; - } else + } + else isValidYear = false; if (!isValidYear) @@ -59,10 +60,12 @@ public class UploadFieldsBuilderActivity extends BaseActivity { } @Override - public void afterTextChanged(Editable s) { } + public void afterTextChanged(Editable s) { + } @Override - public void beforeTextChanged(CharSequence s, int start, int count, int after) { } + public void beforeTextChanged(CharSequence s, int start, int count, int after) { + } }; @Override @@ -111,7 +114,8 @@ public class UploadFieldsBuilderActivity extends BaseActivity { typeRadio.setOnCheckedChangeListener((group, checkedId) -> { if (checkedId == R.id.upload_fields_builder_radio_button_notes) { semesterChooserLinear.setVisibility(View.GONE); - } else { + } + else { semesterChooserLinear.setVisibility(View.VISIBLE); } }); @@ -122,10 +126,12 @@ public class UploadFieldsBuilderActivity extends BaseActivity { if (typeId == -1) { Toast.makeText(BaseApplication.getInstance().getApplicationContext(), "Please choose a type for the upload", Toast.LENGTH_SHORT).show(); return; - } else if (semesterChooserLinear.getVisibility() == View.VISIBLE && semesterId == -1) { + } + else if (semesterChooserLinear.getVisibility() == View.VISIBLE && semesterId == -1) { Toast.makeText(BaseApplication.getInstance().getApplicationContext(), "Please choose a semester for the upload", Toast.LENGTH_SHORT).show(); return; - } else if (year.getText().toString().isEmpty() || !isValidYear) { + } + else if (year.getText().toString().isEmpty() || !isValidYear) { Toast.makeText(BaseApplication.getInstance().getApplicationContext(), "Please choose a valid year for the upload", Toast.LENGTH_SHORT).show(); return; } diff --git a/app/src/main/java/gr/thmmy/mthmmy/activities/upload/UploadsCourse.java b/app/src/main/java/gr/thmmy/mthmmy/activities/upload/UploadsCourse.java index 12f0475f..5a0fd8fe 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/activities/upload/UploadsCourse.java +++ b/app/src/main/java/gr/thmmy/mthmmy/activities/upload/UploadsCourse.java @@ -33,31 +33,31 @@ class UploadsCourse { return greeklishName; } - static Map generateUploadsCourses(String[] uploadsCoursesRes){ + static Map generateUploadsCourses(String[] uploadsCoursesRes) { Map uploadsCourses = new HashMap<>(); - for(String uploadsCourseStr:uploadsCoursesRes) { + for (String uploadsCourseStr : uploadsCoursesRes) { String[] split = uploadsCourseStr.split(":"); UploadsCourse uploadsCourse = new UploadsCourse(split[0], split[1], split[2]); - uploadsCourses.put(uploadsCourse.getName(),uploadsCourse); + uploadsCourses.put(uploadsCourse.getName(), uploadsCourse); } return uploadsCourses; } static UploadsCourse findCourse(String retrievedCourse, - Map uploadsCourses){ + Map uploadsCourses) { retrievedCourse = normalizeGreekNumbers(retrievedCourse); UploadsCourse uploadsCourse = uploadsCourses.get(retrievedCourse); - if(uploadsCourse != null) return uploadsCourse; + if (uploadsCourse != null) return uploadsCourse; String foundKey = null; for (Map.Entry entry : uploadsCourses.entrySet()) { String key = entry.getKey(); if ((key.contains(retrievedCourse) || retrievedCourse.contains(key)) - && (foundKey==null || key.length()>foundKey.length())) + && (foundKey == null || key.length() > foundKey.length())) foundKey = key; } - if(foundKey==null){ + if (foundKey == null) { Timber.w("Couldn't find course that matches %s", retrievedCourse); Bundle bundle = new Bundle(); bundle.putString("course_name", retrievedCourse); diff --git a/app/src/main/java/gr/thmmy/mthmmy/activities/upload/UploadsHelper.java b/app/src/main/java/gr/thmmy/mthmmy/activities/upload/UploadsHelper.java index 4bc71490..73b7fd21 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/activities/upload/UploadsHelper.java +++ b/app/src/main/java/gr/thmmy/mthmmy/activities/upload/UploadsHelper.java @@ -87,8 +87,8 @@ public class UploadsHelper { File.separator + "mTHMMY"); if (!zipFolder.exists() && !zipFolder.mkdirs()) { - Timber.w("Zip folder build returned false in %s", UploadsHelper.class.getSimpleName()); - return null; + Timber.w("Zip folder build returned false in %s", UploadsHelper.class.getSimpleName()); + return null; } return new File(zipFolder, zipFilename); diff --git a/app/src/main/java/gr/thmmy/mthmmy/activities/upload/multipart/MultipartUploadRequest.java b/app/src/main/java/gr/thmmy/mthmmy/activities/upload/multipart/MultipartUploadRequest.java index f6126523..98e22db3 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/activities/upload/multipart/MultipartUploadRequest.java +++ b/app/src/main/java/gr/thmmy/mthmmy/activities/upload/multipart/MultipartUploadRequest.java @@ -12,8 +12,8 @@ import java.io.FileNotFoundException; import java.net.MalformedURLException; /** - From MultipartUploadRequest gotev/android-upload-service in order to use the local custom - MultipartUploadTask. + * From MultipartUploadRequest gotev/android-upload-service in order to use the local custom + * MultipartUploadTask. */ public class MultipartUploadRequest extends HttpUploadRequest { @@ -61,7 +61,8 @@ public class MultipartUploadRequest extends HttpUploadRequest { new LogoutTask(this::onLogoutTaskStarted, this::onLogoutTaskFinished).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR); //Avoid delays between onPreExecute() and doInBackground() }); - builder.setNegativeButton("Nope", (dialogInterface, i) -> {}); + builder.setNegativeButton("Nope", (dialogInterface, i) -> { + }); builder.create().show(); } //-----------------------------------------LOGOUT END----------------------------------------------- @@ -570,7 +582,8 @@ public abstract class BaseActivity extends AppCompatActivity { thisPageBookmarkMenuButton.setIcon(R.drawable.ic_bookmark_false_accent_24dp); toggleTopicToBookmarks(thisPageBookmark); Toast.makeText(BaseApplication.getInstance().getApplicationContext(), "Bookmark removed", Toast.LENGTH_SHORT).show(); - } else { + } + else { thisPageBookmarkMenuButton.setIcon(R.drawable.ic_bookmark_true_accent_24dp); toggleTopicToBookmarks(thisPageBookmark); Toast.makeText(BaseApplication.getInstance().getApplicationContext(), "Bookmark added", Toast.LENGTH_SHORT).show(); @@ -580,14 +593,16 @@ public abstract class BaseActivity extends AppCompatActivity { protected void setBoardBookmark(final ImageButton thisPageBookmarkImageButton) { if (thisPageBookmark.matchExists(boardsBookmarked)) { thisPageBookmarkImageButton.setImageResource(R.drawable.ic_bookmark_true_accent_24dp); - } else { + } + else { thisPageBookmarkImageButton.setImageResource(R.drawable.ic_bookmark_false_accent_24dp); } thisPageBookmarkImageButton.setOnClickListener(view -> { if (thisPageBookmark.matchExists(boardsBookmarked)) { thisPageBookmarkImageButton.setImageResource(R.drawable.ic_bookmark_false_accent_24dp); Toast.makeText(BaseApplication.getInstance().getApplicationContext(), "Bookmark removed", Toast.LENGTH_SHORT).show(); - } else { + } + else { thisPageBookmarkImageButton.setImageResource(R.drawable.ic_bookmark_true_accent_24dp); Toast.makeText(BaseApplication.getInstance().getApplicationContext(), "Bookmark added", Toast.LENGTH_SHORT).show(); } @@ -601,7 +616,8 @@ public abstract class BaseActivity extends AppCompatActivity { loadSavedBookmarks(); if (thisPageBookmark.matchExists(boardsBookmarked)) { thisPageBookmarkImageButton.setImageResource(R.drawable.ic_bookmark_true_accent_24dp); - } else { + } + else { thisPageBookmarkImageButton.setImageResource(R.drawable.ic_bookmark_false_accent_24dp); } } @@ -626,7 +642,8 @@ public abstract class BaseActivity extends AppCompatActivity { if (bookmark.matchExists(boardsBookmarked)) { boardsBookmarked.remove(bookmark.findIndex(boardsBookmarked)); FirebaseMessaging.getInstance().unsubscribeFromTopic("b" + bookmark.getId()); - } else { + } + else { boardsBookmarked.add(new Bookmark(bookmark.getTitle(), bookmark.getId(), true)); FirebaseMessaging.getInstance().subscribeToTopic("b" + bookmark.getId()); } @@ -638,7 +655,8 @@ public abstract class BaseActivity extends AppCompatActivity { if (bookmark.matchExists(topicsBookmarked)) { topicsBookmarked.remove(bookmark.findIndex(topicsBookmarked)); FirebaseMessaging.getInstance().unsubscribeFromTopic(bookmark.getId()); - } else { + } + else { topicsBookmarked.add(new Bookmark(bookmark.getTitle(), bookmark.getId(), true)); FirebaseMessaging.getInstance().subscribeToTopic(bookmark.getId()); } @@ -675,7 +693,8 @@ public abstract class BaseActivity extends AppCompatActivity { FirebaseMessaging.getInstance().unsubscribeFromTopic(bookmark.getId()); return topicsBookmarked.get(bookmark.findIndex(topicsBookmarked)).isNotificationsEnabled(); - } else if (bookmark.matchExists(boardsBookmarked)) { + } + else if (bookmark.matchExists(boardsBookmarked)) { boardsBookmarked.get(bookmark.findIndex(boardsBookmarked)).toggleNotificationsEnabled(); updateBoardBookmarks(); @@ -685,7 +704,8 @@ public abstract class BaseActivity extends AppCompatActivity { FirebaseMessaging.getInstance().unsubscribeFromTopic("b" + bookmark.getId()); return boardsBookmarked.get(bookmark.findIndex(boardsBookmarked)).isNotificationsEnabled(); - } else + } + else Timber.w("No bookmark match exists!"); return false; } @@ -814,8 +834,8 @@ public abstract class BaseActivity extends AppCompatActivity { privacyPolicyTextView.setTextColor(ContextCompat.getColor(this, R.color.primary_text)); SpannableConfiguration configuration = SpannableConfiguration.builder(this).linkResolver(new LinkResolverDef()).build(); - String privacyPolicy = AssetUtils.readFileToText(BaseActivity.this,"PRIVACY.md"); - if(privacyPolicy!=null){ + String privacyPolicy = AssetUtils.readFileToText(BaseActivity.this, "PRIVACY.md"); + if (privacyPolicy != null) { Markwon.setMarkdown(privacyPolicyTextView, configuration, privacyPolicy); AlertDialog.Builder builder = new AlertDialog.Builder(this, R.style.AppCompatAlertDialogStyle); builder.setView(privacyPolicyTextView); @@ -902,7 +922,8 @@ public abstract class BaseActivity extends AppCompatActivity { dialogProgressText.setText(getString(R.string.upload_failed)); uploadsProgressDialog.show(); - } else { + } + else { //Empty buttons are needed, they are updated with correct values in the receiver uploadsProgressDialog.setButton(AlertDialog.BUTTON_NEUTRAL, "placeholder", (progressDialog, progressWhich) -> { }); @@ -913,7 +934,8 @@ public abstract class BaseActivity extends AppCompatActivity { //UploadsReceiver.setDialogDisplay(uploadsProgressDialog, dialogUploadID, retryIntent); uploadsProgressDialog.show(); } - } else { + } + else { UploadsReceiver.setDialogDisplay(uploadsProgressDialog, dialogUploadID, null); //UploadsReceiver.setDialogDisplay(uploadsProgressDialog, dialogUploadID, retryIntent); uploadsProgressDialog.show(); diff --git a/app/src/main/java/gr/thmmy/mthmmy/base/BaseApplication.java b/app/src/main/java/gr/thmmy/mthmmy/base/BaseApplication.java index feed7496..61c32078 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/base/BaseApplication.java +++ b/app/src/main/java/gr/thmmy/mthmmy/base/BaseApplication.java @@ -107,8 +107,8 @@ public class BaseApplication extends MultiDexApplication { displayRelativeTime = settingsSharedPrefs.getBoolean(DISPLAY_RELATIVE_TIME, true); } - private void initFirebase(SharedPreferences settingsSharedPrefs){ - if (settingsSharedPrefs.getBoolean(getString(R.string.pref_privacy_crashlytics_enable_key), false)){ + private void initFirebase(SharedPreferences settingsSharedPrefs) { + if (settingsSharedPrefs.getBoolean(getString(R.string.pref_privacy_crashlytics_enable_key), false)) { Timber.i("Starting app with Firebase Crashlytics enabled."); setFirebaseCrashlyticsEnabled(true); } @@ -127,7 +127,7 @@ public class BaseApplication extends MultiDexApplication { Timber.i("Starting app with Firebase Analytics disabled."); } - private void initOkHttp(PersistentCookieJar cookieJar){ + private void initOkHttp(PersistentCookieJar cookieJar) { OkHttpClient.Builder builder = new OkHttpClient.Builder() .cookieJar(cookieJar) .addInterceptor(chain -> { @@ -165,7 +165,7 @@ public class BaseApplication extends MultiDexApplication { client = builder.build(); } - private void initDrawerImageLoader(){ + private void initDrawerImageLoader() { DrawerImageLoader.init(new AbstractDrawerImageLoader() { @Override public void set(ImageView imageView, Uri uri, Drawable placeholder, String tag) { @@ -179,7 +179,7 @@ public class BaseApplication extends MultiDexApplication { @Override public Drawable placeholder(Context ctx, String tag) { - if (DrawerImageLoader.Tags.PROFILE.name().equals(tag)){ + if (DrawerImageLoader.Tags.PROFILE.name().equals(tag)) { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) return ContextCompat.getDrawable(BaseApplication.getInstance(), R.drawable.ic_default_user_avatar); else { // Just for KitKats @@ -194,7 +194,7 @@ public class BaseApplication extends MultiDexApplication { }); } - private void setDisplayMetrics(){ + private void setDisplayMetrics() { DisplayMetrics displayMetrics = getApplicationContext().getResources().getDisplayMetrics(); widthPxl = displayMetrics.widthPixels; @@ -244,7 +244,7 @@ public class BaseApplication extends MultiDexApplication { if (!enabled) firebaseAnalytics.resetAnalyticsData(); - if(enabled) + if (enabled) Timber.i("Firebase Analytics enabled."); else Timber.i("Firebase Analytics disabled."); @@ -252,14 +252,14 @@ public class BaseApplication extends MultiDexApplication { public void setFirebaseCrashlyticsEnabled(boolean enable) { FirebaseCrashlytics.getInstance().setCrashlyticsCollectionEnabled(enable); - if(enable){ + if (enable) { crashReportingTree = new CrashReportingTree(); Timber.plant(crashReportingTree); Timber.i("CrashReporting tree planted."); Timber.i("Firebase Crashlytics enabled."); } - else{ - if(crashReportingTree!=null) { + else { + if (crashReportingTree != null) { Timber.uproot(crashReportingTree); Timber.i("CrashReporting tree uprooted."); } @@ -267,7 +267,7 @@ public class BaseApplication extends MultiDexApplication { } } - public static String getFirebaseProjectId(){ + public static String getFirebaseProjectId() { return firebaseProjectId; } } diff --git a/app/src/main/java/gr/thmmy/mthmmy/base/BaseFragment.java b/app/src/main/java/gr/thmmy/mthmmy/base/BaseFragment.java index 0fd18e5c..862b3a61 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/base/BaseFragment.java +++ b/app/src/main/java/gr/thmmy/mthmmy/base/BaseFragment.java @@ -46,5 +46,6 @@ public abstract class BaseFragment extends Fragment { * the activity that contains it, to allow communication upon interaction, * between the fragment and the activity/ other fragments */ - public interface FragmentInteractionListener {} + public interface FragmentInteractionListener { + } } diff --git a/app/src/main/java/gr/thmmy/mthmmy/model/Bookmark.java b/app/src/main/java/gr/thmmy/mthmmy/model/Bookmark.java index 1da43458..73495023 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/model/Bookmark.java +++ b/app/src/main/java/gr/thmmy/mthmmy/model/Bookmark.java @@ -28,7 +28,7 @@ public class Bookmark implements java.io.Serializable { return isNotificationsEnabled; } - public void toggleNotificationsEnabled(){ + public void toggleNotificationsEnabled() { this.isNotificationsEnabled = !this.isNotificationsEnabled; } diff --git a/app/src/main/java/gr/thmmy/mthmmy/model/Download.java b/app/src/main/java/gr/thmmy/mthmmy/model/Download.java index 045129b8..d2b77b46 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/model/Download.java +++ b/app/src/main/java/gr/thmmy/mthmmy/model/Download.java @@ -57,11 +57,11 @@ public class Download { return hasSubCategory; } - public String getFileName(){ + public String getFileName() { return fileName; } - public void setFileName(String fileName){ + public void setFileName(String fileName) { this.fileName = fileName; } } diff --git a/app/src/main/java/gr/thmmy/mthmmy/model/Poll.java b/app/src/main/java/gr/thmmy/mthmmy/model/Poll.java index 407a357e..039946ad 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/model/Poll.java +++ b/app/src/main/java/gr/thmmy/mthmmy/model/Poll.java @@ -91,8 +91,7 @@ public class Poll extends TopicItem { /** * Constructor for entry with unknown number of votes * - * @param entryName - * The name of the entry + * @param entryName The name of the entry */ public Entry(String entryName) { this.entryName = entryName; diff --git a/app/src/main/java/gr/thmmy/mthmmy/model/Post.java b/app/src/main/java/gr/thmmy/mthmmy/model/Post.java index 7e0b7f55..8000e93f 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/model/Post.java +++ b/app/src/main/java/gr/thmmy/mthmmy/model/Post.java @@ -81,7 +81,8 @@ public class Post extends TopicItem { * Constructor for active user's posts. All variables are declared final, once assigned they * can not change. Parameters notated as {@link Nullable} can either pass null or empty * (strings/ArrayList). - * @param thumbnailUrl author's thumbnail url + * + * @param thumbnailUrl author's thumbnail url * @param author author's username * @param subject post's subject * @param content post itself @@ -139,7 +140,8 @@ public class Post extends TopicItem { * Constructor for deleted user's posts. All variables are declared final, once assigned they * can not change. Parameters notated as {@link Nullable} can either pass null or empty * (strings/ArrayList). - * @param thumbnailUrl author's thumbnail url + * + * @param thumbnailUrl author's thumbnail url * @param author author's username * @param subject post's subject * @param content post itself diff --git a/app/src/main/java/gr/thmmy/mthmmy/model/PostNotification.java b/app/src/main/java/gr/thmmy/mthmmy/model/PostNotification.java index 838dc2d3..71803033 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/model/PostNotification.java +++ b/app/src/main/java/gr/thmmy/mthmmy/model/PostNotification.java @@ -30,12 +30,12 @@ public class PostNotification { * Constructor specifying all class variables necessary to summarize this post. All variables * are declared final, once assigned they cannot change. * - * @param postId this post's id - * @param topicId this post's topicId - * @param topicTitle this post's topicTitle - * @param poster username of this post's author - * @param boardId one of this post's boardIds (-1 if it is a topic notification) - * @param boardTitle one of this post's boardTitles (null if it is a topic notification) + * @param postId this post's id + * @param topicId this post's topicId + * @param topicTitle this post's topicTitle + * @param poster username of this post's author + * @param boardId one of this post's boardIds (-1 if it is a topic notification) + * @param boardTitle one of this post's boardTitles (null if it is a topic notification) */ public PostNotification(int postId, int topicId, String topicTitle, String poster, int boardId, String boardTitle) { this.postId = postId; diff --git a/app/src/main/java/gr/thmmy/mthmmy/model/ThmmyFile.java b/app/src/main/java/gr/thmmy/mthmmy/model/ThmmyFile.java index 91f7a5d7..ccb699e5 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/model/ThmmyFile.java +++ b/app/src/main/java/gr/thmmy/mthmmy/model/ThmmyFile.java @@ -21,7 +21,7 @@ public class ThmmyFile { */ public ThmmyFile(URL fileUrl, String fileName, String fileInfo) { this.fileUrl = fileUrl; - if(fileName!=null) + if (fileName != null) this.fileName = fileName; else this.fileName = URLUtil.guessFileName(fileUrl.toString(), null, null); diff --git a/app/src/main/java/gr/thmmy/mthmmy/model/ThmmyPage.java b/app/src/main/java/gr/thmmy/mthmmy/model/ThmmyPage.java index c500c50a..282e2247 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/model/ThmmyPage.java +++ b/app/src/main/java/gr/thmmy/mthmmy/model/ThmmyPage.java @@ -153,7 +153,8 @@ public class ThmmyPage { else if (uriString.contains(";sa=statPanel")) return PageCategory.PROFILE_STATS; else return PageCategory.PROFILE_SUMMARY; - } else if (uriString.contains("action=unread")) + } + else if (uriString.contains("action=unread")) return PageCategory.UNREAD_POSTS; else if (uriString.contains("action=tpmod;dl=item")) return PageCategory.DOWNLOADS_FILE; @@ -185,17 +186,19 @@ public class ThmmyPage { Matcher topicIdMatcher = Pattern.compile("topic=[0-9]+").matcher(topicUrl); if (topicIdMatcher.find()) { return topicUrl.substring(topicIdMatcher.start() + 6, topicIdMatcher.end()); - } else return null; + } + else return null; } return null; } /** * This method gets a VALID topic url and strips it off any unnecessary stuff (e.g. wap2). + * * @param topicUrl a valid topic url * @return sanitized topic url */ - public static String sanitizeTopicUrl(String topicUrl) { - return topicUrl.replace("action=printpage;","").replace("wap2",""); + public static String sanitizeTopicUrl(String topicUrl) { + return topicUrl.replace("action=printpage;", "").replace("wap2", ""); } } diff --git a/app/src/main/java/gr/thmmy/mthmmy/services/DownloadHelper.java b/app/src/main/java/gr/thmmy/mthmmy/services/DownloadHelper.java index 9ba05eef..b98b21d3 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/services/DownloadHelper.java +++ b/app/src/main/java/gr/thmmy/mthmmy/services/DownloadHelper.java @@ -24,7 +24,7 @@ import static gr.thmmy.mthmmy.utils.FileUtils.getMimeType; public class DownloadHelper { public static final File SAVE_DIR = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS); - public static void enqueueDownload(ThmmyFile thmmyFile){ + public static void enqueueDownload(ThmmyFile thmmyFile) { Context applicationContext = BaseApplication.getInstance().getApplicationContext(); Toast.makeText(applicationContext, "Download started!", Toast.LENGTH_SHORT).show(); @@ -32,11 +32,11 @@ public class DownloadHelper { String fileName = renameFileIfExists(thmmyFile.getFilename()); Uri downloadURI = Uri.parse(thmmyFile.getFileUrl().toString()); - DownloadManager downloadManager = (DownloadManager)applicationContext.getSystemService(Context.DOWNLOAD_SERVICE); + DownloadManager downloadManager = (DownloadManager) applicationContext.getSystemService(Context.DOWNLOAD_SERVICE); DownloadManager.Request request = new DownloadManager.Request(downloadURI); Cookie thmmyCookie = BaseApplication.getInstance().getSessionManager().getThmmyCookie(); - if(thmmyCookie!=null) + if (thmmyCookie != null) request.addRequestHeader("Cookie", thmmyCookie.name() + "=" + thmmyCookie.value()); request.setTitle(fileName); request.setMimeType(getMimeType(fileName)); @@ -63,7 +63,8 @@ public class DownloadHelper { if (tokens.length != 2) { Timber.w("Couldn't get file extension..."); nameFormat = originalFileName + "(%d)"; - } else + } + else nameFormat = tokens[0] + "-%d." + tokens[1]; for (int i = 1; ; i++) { diff --git a/app/src/main/java/gr/thmmy/mthmmy/services/NotificationService.java b/app/src/main/java/gr/thmmy/mthmmy/services/NotificationService.java index 79c36d4b..0ea4527f 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/services/NotificationService.java +++ b/app/src/main/java/gr/thmmy/mthmmy/services/NotificationService.java @@ -63,12 +63,12 @@ public class NotificationService extends FirebaseMessagingService { int boardId = -1; String boardTitle = null; int topicId = Integer.parseInt(json.getString("topicId")); - if(remoteMessage.getFrom().contains("b")){ + if (remoteMessage.getFrom().contains("b")) { Timber.i("FCM BOARD type message detected."); SharedPreferences bookmarksFile = getSharedPreferences(BOOKMARKS_SHARED_PREFS, Context.MODE_PRIVATE); String bookmarkedTopicsString = bookmarksFile.getString(BOOKMARKED_TOPICS_KEY, null); - if (bookmarkedTopicsString != null && matchExistsById(Bookmark.stringToArrayList(bookmarkedTopicsString), topicId)){ + if (bookmarkedTopicsString != null && matchExistsById(Bookmark.stringToArrayList(bookmarkedTopicsString), topicId)) { Timber.i("Board notification suppressed (already subscribed to topic)."); return; } @@ -76,12 +76,12 @@ public class NotificationService extends FirebaseMessagingService { boardId = Integer.parseInt(json.getString("boardId")); String bookmarkedBoardsString = bookmarksFile.getString(BOOKMARKED_BOARDS_KEY, null); - if (bookmarkedBoardsString != null){ + if (bookmarkedBoardsString != null) { ArrayList boardBookmarks = Bookmark.stringToArrayList(bookmarkedBoardsString); ArrayList subBoardIds = getSubBoardIds(json.getString("boardIds"), boardId); //TODO: Also suppress if user has chosen to be notified only for direct children of boardId && !subBoardIds.isEmpty() - for(int subId:subBoardIds){ - if(matchExistsById(boardBookmarks, subId)){ + for (int subId : subBoardIds) { + if (matchExistsById(boardBookmarks, subId)) { Timber.i("Board notification suppressed (already subscribed to a subBoard)."); return; } @@ -98,7 +98,8 @@ public class NotificationService extends FirebaseMessagingService { String poster = json.getString("poster"); sendNotification(new PostNotification(postId, topicId, topicTitle, poster, boardId, boardTitle)); - } else + } + else Timber.i("Notification suppressed (own userID)."); } catch (JSONException e) { Timber.e(e, "JSON Exception"); @@ -106,17 +107,17 @@ public class NotificationService extends FirebaseMessagingService { } } - private static ArrayList getSubBoardIds(String boardIdsString, int boardId){ + private static ArrayList getSubBoardIds(String boardIdsString, int boardId) { ArrayList subBoardIds = new ArrayList<>(); Pattern p = Pattern.compile("(\\d+)"); Matcher m = p.matcher(boardIdsString); - boolean boardIdfound=false; - while (m.find()){ + boolean boardIdfound = false; + while (m.find()) { int subBoardId = Integer.parseInt(m.group()); - if(boardIdfound) + if (boardIdfound) subBoardIds.add(subBoardId); - else if(boardId==subBoardId) - boardIdfound=true; + else if (boardId == subBoardId) + boardIdfound = true; } return subBoardIds; } @@ -154,7 +155,8 @@ public class NotificationService extends FirebaseMessagingService { if (notificationsVibrateEnabled) { if (notificationDefaultValues != -1) { notificationDefaultValues |= Notification.DEFAULT_VIBRATE; - } else { + } + else { notificationDefaultValues = Notification.DEFAULT_VIBRATE; } @@ -162,7 +164,8 @@ public class NotificationService extends FirebaseMessagingService { if (notificationSoundUri == null) { if (notificationDefaultValues != -1) { notificationDefaultValues = Notification.DEFAULT_SOUND; - } else { + } + else { notificationDefaultValues |= Notification.DEFAULT_SOUND; } } @@ -180,15 +183,15 @@ public class NotificationService extends FirebaseMessagingService { int notificationId; String contentText; - if(isTopicNotification){ + if (isTopicNotification) { notificationId = postNotification.getTopicId(); contentText = "New post by " + postNotification.getPoster(); } - else{ + else { // Using Cantor pairing function (plus the minus sign) for id uniqueness int k1 = postNotification.getTopicId(); int k2 = postNotification.getBoardId(); - notificationId = -(((k1+k2)*(k1+k2+1))/2+k2); + notificationId = -(((k1 + k2) * (k1 + k2 + 1)) / 2 + k2); contentText = "New post in \"" + postNotification.getTopicTitle() + "\""; } @@ -198,7 +201,7 @@ public class NotificationService extends FirebaseMessagingService { Notification existingNotification = getActiveNotification(notificationId); if (existingNotification != null) { newPostsCount = existingNotification.extras.getInt(NEW_POSTS_COUNT) + 1; - if(isTopicNotification) + if (isTopicNotification) contentText = newPostsCount + " new posts"; else contentText = newPostsCount + " new posts in " + postNotification.getTopicTitle(); @@ -217,7 +220,7 @@ public class NotificationService extends FirebaseMessagingService { .setGroup(GROUP_KEY) .addExtras(notificationExtras); - if(isTopicNotification) + if (isTopicNotification) notificationBuilder.setContentTitle(postNotification.getTopicTitle()); else @@ -262,7 +265,7 @@ public class NotificationService extends FirebaseMessagingService { // Since Android Oreo notification channel is needed. if (buildVersion >= Build.VERSION_CODES.O && notificationManager.getNotificationChannel(CHANNEL_ID) == null) - notificationManager.createNotificationChannel(new NotificationChannel(CHANNEL_ID, CHANNEL_NAME, NotificationManager.IMPORTANCE_HIGH)); + notificationManager.createNotificationChannel(new NotificationChannel(CHANNEL_ID, CHANNEL_NAME, NotificationManager.IMPORTANCE_HIGH)); notificationManager.notify(NEW_POST_TAG, notificationId, notificationBuilder.build()); diff --git a/app/src/main/java/gr/thmmy/mthmmy/services/UploadsReceiver.java b/app/src/main/java/gr/thmmy/mthmmy/services/UploadsReceiver.java index 1406eb57..650727f1 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/services/UploadsReceiver.java +++ b/app/src/main/java/gr/thmmy/mthmmy/services/UploadsReceiver.java @@ -87,7 +87,7 @@ public class UploadsReceiver extends UploadServiceBroadcastReceiver { @Override public void onProgress(Context context, UploadInfo uploadInfo) { - Timber.i("Upload in progress (id: %s)",uploadInfo.getUploadId()); + Timber.i("Upload in progress (id: %s)", uploadInfo.getUploadId()); if (Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP && uploadInfo.getUploadId().equals(dialogUploadID) && uploadProgressDialog != null) { @@ -127,7 +127,7 @@ public class UploadsReceiver extends UploadServiceBroadcastReceiver { @Override public void onError(Context context, UploadInfo uploadInfo, ServerResponse serverResponse, Exception exception) { - Timber.i("Error while uploading (id: %s)",uploadInfo.getUploadId()); + Timber.i("Error while uploading (id: %s)", uploadInfo.getUploadId()); if (Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP && uploadInfo.getUploadId().equals(dialogUploadID) && uploadProgressDialog != null) { @@ -162,7 +162,8 @@ public class UploadsReceiver extends UploadServiceBroadcastReceiver { uploadProgressDialog.dismiss(); } } - } else { + } + else { cancelNotification(context, uploadInfo.getNotificationID()); Intent combinedActionsIntent = new Intent(UploadsReceiver.ACTION_COMBINED_UPLOAD); combinedActionsIntent.putExtra(UploadsReceiver.UPLOAD_ID_KEY, uploadInfo.getUploadId()); @@ -183,17 +184,17 @@ public class UploadsReceiver extends UploadServiceBroadcastReceiver { } String response = serverResponse.getBodyAsString(); - if(response.contains("Η προσθήκη του αρχείου ήταν επιτυχημένη.")||response.contains("The upload was successful.")){ - Timber.i("Upload completed successfully (id: %s)",uploadInfo.getUploadId()); + if (response.contains("Η προσθήκη του αρχείου ήταν επιτυχημένη.") || response.contains("The upload was successful.")) { + Timber.i("Upload completed successfully (id: %s)", uploadInfo.getUploadId()); Toast.makeText(context.getApplicationContext(), "Upload completed successfully", Toast.LENGTH_SHORT).show(); BaseApplication.getInstance().logFirebaseAnalyticsEvent("file_upload", null); } else { MultipartUploadException multipartUploadException = new MultipartUploadException(response); Timber.e(multipartUploadException); - onError(context,uploadInfo,serverResponse,multipartUploadException); + onError(context, uploadInfo, serverResponse, multipartUploadException); } - + if (storage == null) { storage = new Storage(context.getApplicationContext()); } @@ -224,7 +225,7 @@ public class UploadsReceiver extends UploadServiceBroadcastReceiver { //UploadsReceiver.multipartUploadRetryIntent = multipartUploadRetryIntent; } - private void cancelNotification(Context context, int notificationId){ + private void cancelNotification(Context context, int notificationId) { NotificationManager notificationManager = (NotificationManager) context.getApplicationContext(). getSystemService(Context.NOTIFICATION_SERVICE); if (notificationManager != null) diff --git a/app/src/main/java/gr/thmmy/mthmmy/session/InvalidSessionException.java b/app/src/main/java/gr/thmmy/mthmmy/session/InvalidSessionException.java index 37bc2ddd..00a80118 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/session/InvalidSessionException.java +++ b/app/src/main/java/gr/thmmy/mthmmy/session/InvalidSessionException.java @@ -1,7 +1,8 @@ package gr.thmmy.mthmmy.session; public class InvalidSessionException extends RuntimeException { - public InvalidSessionException() {} + public InvalidSessionException() { + } public InvalidSessionException(String message) { super(message); diff --git a/app/src/main/java/gr/thmmy/mthmmy/session/LogoutTask.java b/app/src/main/java/gr/thmmy/mthmmy/session/LogoutTask.java index 66333739..70674dc1 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/session/LogoutTask.java +++ b/app/src/main/java/gr/thmmy/mthmmy/session/LogoutTask.java @@ -28,7 +28,7 @@ public class LogoutTask extends NetworkTask { Keep in mind, server changes sesc at will over time for a given session! */ Parcel parcel = executeInBackground(indexUrl.toString()); - if(parcel.getResultCode() == NetworkResultCodes.SUCCESSFUL) + if (parcel.getResultCode() == NetworkResultCodes.SUCCESSFUL) return executeInBackground(logoutLink); // Now we will attempt to logout else return parcel; } @@ -36,14 +36,14 @@ public class LogoutTask extends NetworkTask { @Override protected Void performTask(Document document, Response response) { try { - if(logoutLink==null) + if (logoutLink == null) logoutLink = extractLogoutLink(document); else { // Just for logging purposes Elements sessionVerificationFailed = document.select("td:containsOwn(Session " + "verification failed. Please try logging out and back in again, and then try " + "again.), td:containsOwn(Η επαλήθευση συνόδου απέτυχε. Παρακαλούμε κάντε " + "αποσύνδεση, επανασύνδεση και ξαναδοκιμάστε.)"); - if(!sessionVerificationFailed.isEmpty()){ + if (!sessionVerificationFailed.isEmpty()) { Timber.i("Logout failed (invalid session)"); throw new InvalidSessionException(); } @@ -73,7 +73,7 @@ public class LogoutTask extends NetworkTask { return NetworkResultCodes.SUCCESSFUL; } - private String extractLogoutLink(Document document){ + private String extractLogoutLink(Document document) { Elements logoutLink = document.select("a[href^=" + baseLogoutLink + "]"); if (!logoutLink.isEmpty()) { diff --git a/app/src/main/java/gr/thmmy/mthmmy/session/MarkAsReadTask.java b/app/src/main/java/gr/thmmy/mthmmy/session/MarkAsReadTask.java index 684f87ba..e815d295 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/session/MarkAsReadTask.java +++ b/app/src/main/java/gr/thmmy/mthmmy/session/MarkAsReadTask.java @@ -22,7 +22,7 @@ public class MarkAsReadTask extends NetworkTask { @Override protected Parcel doInBackground(String... input) { Parcel parcel = executeInBackground(unreadUrl.toString()); - if(parcel.getResultCode() == NetworkResultCodes.SUCCESSFUL) + if (parcel.getResultCode() == NetworkResultCodes.SUCCESSFUL) return executeInBackground(markAsReadLink); else return parcel; } @@ -34,9 +34,9 @@ public class MarkAsReadTask extends NetworkTask { "verification failed. Please try logging out and back in again, and then try " + "again.), td:containsOwn(Η επαλήθευση συνόδου απέτυχε. Παρακαλούμε κάντε " + "αποσύνδεση, επανασύνδεση και ξαναδοκιμάστε.)"); - if(!sessionVerificationFailed.isEmpty()) + if (!sessionVerificationFailed.isEmpty()) throw new InvalidSessionException(); - if(markAsReadLink==null) + if (markAsReadLink == null) markAsReadLink = extractMarkAsReadLink(document); } catch (InvalidSessionException ise) { @@ -52,7 +52,7 @@ public class MarkAsReadTask extends NetworkTask { return NetworkResultCodes.SUCCESSFUL; } - private String extractMarkAsReadLink(Document document){ + private String extractMarkAsReadLink(Document document) { Elements markAllAsReadLink = document.select("a[href^=" + baseMarkAllAsReadLink + "]"); if (!markAllAsReadLink.isEmpty()) { diff --git a/app/src/main/java/gr/thmmy/mthmmy/session/SessionManager.java b/app/src/main/java/gr/thmmy/mthmmy/session/SessionManager.java index fff30acf..d199d539 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/session/SessionManager.java +++ b/app/src/main/java/gr/thmmy/mthmmy/session/SessionManager.java @@ -125,7 +125,8 @@ public class SessionManager { editor.apply(); return SUCCESS; - } else { + } + else { Timber.i("Login failed."); //Investigate login failure @@ -156,7 +157,7 @@ public class SessionManager { Timber.i("Login InterruptedIOException"); //users cancels LoginTask return CANCELLED; } catch (IOException e) { - Timber.w(e ,"Login IOException"); + Timber.w(e, "Login IOException"); return CONNECTION_ERROR; } catch (Exception e) { Timber.e(e, "Login Exception (other)"); @@ -203,8 +204,8 @@ public class SessionManager { public Cookie getThmmyCookie() { List cookieList = cookieJar.loadForRequest(indexUrl); - for(Cookie cookie: cookieList) { - if(cookie.name().equals("THMMYgrC00ki3")) + for (Cookie cookie : cookieList) { + if (cookie.name().equals("THMMYgrC00ki3")) return cookie; } return null; @@ -225,8 +226,8 @@ public class SessionManager { //------------------------------------ OTHER ------------------------------------------- private boolean validateRetrievedCookies() { List cookieList = cookieJar.loadForRequest(indexUrl); - for(Cookie cookie: cookieList) { - if(cookie.name().equals("THMMYgrC00ki3")) + for (Cookie cookie : cookieList) { + if (cookie.name().equals("THMMYgrC00ki3")) return true; } return false; @@ -246,7 +247,7 @@ public class SessionManager { cookiePersistor.saveAll(cookieList); } - private void setLoginScreenAsDefault(boolean b){ + private void setLoginScreenAsDefault(boolean b) { sessionSharedPrefs.edit().putBoolean(LOGIN_SCREEN_AS_DEFAULT, b).apply(); } @@ -263,7 +264,8 @@ public class SessionManager { Matcher matcher = pattern.matcher(txt); if (matcher.find()) userName = matcher.group(1); - } else { + } + else { //Helios_Multi and SMF_oneBlue user = doc.select("td.smalltext[width=100%] b"); if (user.size() == 1) @@ -279,12 +281,12 @@ public class SessionManager { if (userName != null && !userName.isEmpty()) return userName; - Timber.e(new ParseException("Parsing failed(username extraction)"),"ParseException"); + Timber.e(new ParseException("Parsing failed(username extraction)"), "ParseException"); return "User"; //return a default username } private int extractUserId(@NonNull Document doc) { - try{ + try { Elements elements = doc.select("a:containsOwn(Εμφάνιση των μηνυμάτων σας), a:containsOwn(Show own posts)"); if (elements.size() == 1) { String link = elements.first().attr("href"); @@ -295,9 +297,9 @@ public class SessionManager { return Integer.parseInt(matcher.group(1)); } } catch (Exception e) { - Timber.e(new ParseException("Parsing failed(user id extraction)"),"ParseException"); + Timber.e(new ParseException("Parsing failed(user id extraction)"), "ParseException"); } - Timber.e(new ParseException("Parsing failed(user id extraction)"),"ParseException"); + Timber.e(new ParseException("Parsing failed(user id extraction)"), "ParseException"); return -1; } diff --git a/app/src/main/java/gr/thmmy/mthmmy/utils/DateTimeUtils.java b/app/src/main/java/gr/thmmy/mthmmy/utils/DateTimeUtils.java index b65fd2f4..deae8522 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/utils/DateTimeUtils.java +++ b/app/src/main/java/gr/thmmy/mthmmy/utils/DateTimeUtils.java @@ -10,8 +10,8 @@ import static android.text.format.DateUtils.YEAR_IN_MILLIS; public class DateTimeUtils { - private static final long MONTH_IN_MILLIS = 30*DAY_IN_MILLIS; - private static final long DECADE_IN_MILLIS = 10*YEAR_IN_MILLIS; + private static final long MONTH_IN_MILLIS = 30 * DAY_IN_MILLIS; + private static final long DECADE_IN_MILLIS = 10 * YEAR_IN_MILLIS; @VisibleForTesting public static String getRelativeTimeSpanString(long time) { @@ -21,51 +21,55 @@ public class DateTimeUtils { long duration = Math.abs(now - time); String format; long count, mod; - if(duration < 45*SECOND_IN_MILLIS) + if (duration < 45 * SECOND_IN_MILLIS) return "just now"; - else if (duration < 45*MINUTE_IN_MILLIS) { - count = duration/MINUTE_IN_MILLIS; + else if (duration < 45 * MINUTE_IN_MILLIS) { + count = duration / MINUTE_IN_MILLIS; mod = duration % MINUTE_IN_MILLIS; - if(mod >= 30*SECOND_IN_MILLIS) + if (mod >= 30 * SECOND_IN_MILLIS) count += 1; format = "%dm"; - } else if (duration < 22*HOUR_IN_MILLIS) { - count = duration/HOUR_IN_MILLIS; + } + else if (duration < 22 * HOUR_IN_MILLIS) { + count = duration / HOUR_IN_MILLIS; format = "%dh"; - mod = (duration%HOUR_IN_MILLIS)/MINUTE_IN_MILLIS; - if(count<3 && mod>9 && mod<51){ - if(count==0) - format = mod +"m"; + mod = (duration % HOUR_IN_MILLIS) / MINUTE_IN_MILLIS; + if (count < 3 && mod > 9 && mod < 51) { + if (count == 0) + format = mod + "m"; else - format = format + " " + mod +"m"; + format = format + " " + mod + "m"; } - else if(mod >= 30) + else if (mod >= 30) count += 1; - } else if (duration < 26*DAY_IN_MILLIS) { - count = duration/DAY_IN_MILLIS; + } + else if (duration < 26 * DAY_IN_MILLIS) { + count = duration / DAY_IN_MILLIS; format = "%dd"; mod = duration % DAY_IN_MILLIS; - if(mod >= 12*HOUR_IN_MILLIS) + if (mod >= 12 * HOUR_IN_MILLIS) count += 1; - } else if (duration < 320*DAY_IN_MILLIS) { - count = duration/MONTH_IN_MILLIS; + } + else if (duration < 320 * DAY_IN_MILLIS) { + count = duration / MONTH_IN_MILLIS; format = "%d month"; mod = duration % MONTH_IN_MILLIS; - if(mod >= 15*DAY_IN_MILLIS) + if (mod >= 15 * DAY_IN_MILLIS) count += 1; - if(count>1) + if (count > 1) format = format + 's'; - } else if (duration < DECADE_IN_MILLIS) { - count = duration/YEAR_IN_MILLIS; + } + else if (duration < DECADE_IN_MILLIS) { + count = duration / YEAR_IN_MILLIS; format = "%d year"; mod = duration % YEAR_IN_MILLIS; - if(mod >= 183*DAY_IN_MILLIS) + if (mod >= 183 * DAY_IN_MILLIS) count += 1; - if(count>1) + if (count > 1) format = format + 's'; } else - return past ? "a long time ago": "in the distant future"; + return past ? "a long time ago" : "in the distant future"; format = past ? format : "in " + format; return String.format(format, (int) count); diff --git a/app/src/main/java/gr/thmmy/mthmmy/utils/ExternalAsyncTask.java b/app/src/main/java/gr/thmmy/mthmmy/utils/ExternalAsyncTask.java index 88621314..93544ffa 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/utils/ExternalAsyncTask.java +++ b/app/src/main/java/gr/thmmy/mthmmy/utils/ExternalAsyncTask.java @@ -52,7 +52,8 @@ public abstract class ExternalAsyncTask extends AsyncTask { this.onTaskFinishedListener = onTaskFinishedListener; } - public ExternalAsyncTask() { } + public ExternalAsyncTask() { + } public void setOnTaskStartedListener(OnTaskStartedListener onTaskStartedListener) { this.onTaskStartedListener = onTaskStartedListener; @@ -78,7 +79,7 @@ public abstract class ExternalAsyncTask extends AsyncTask { void onTaskFinished(V result); } - public boolean isRunning(){ + public boolean isRunning() { return getStatus() == AsyncTask.Status.RUNNING; } } diff --git a/app/src/main/java/gr/thmmy/mthmmy/utils/FileUtils.java b/app/src/main/java/gr/thmmy/mthmmy/utils/FileUtils.java index e1ef6f9e..34a4f831 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/utils/FileUtils.java +++ b/app/src/main/java/gr/thmmy/mthmmy/utils/FileUtils.java @@ -41,7 +41,8 @@ public class FileUtils { } if (filename.toLowerCase().endsWith(".tar.gz")) { fileExtension = filename.substring(filename.length() - 7); - } else { + } + else { fileExtension = filename.substring(filename.lastIndexOf(".")); } diff --git a/app/src/main/java/gr/thmmy/mthmmy/utils/HTMLUtils.java b/app/src/main/java/gr/thmmy/mthmmy/utils/HTMLUtils.java index 8ca4ede6..cc2773e6 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/utils/HTMLUtils.java +++ b/app/src/main/java/gr/thmmy/mthmmy/utils/HTMLUtils.java @@ -25,13 +25,15 @@ import static gr.thmmy.mthmmy.activities.profile.ProfileActivity.BUNDLE_PROFILE_ import static gr.thmmy.mthmmy.activities.profile.ProfileActivity.BUNDLE_PROFILE_USERNAME; public class HTMLUtils { - private HTMLUtils() {} + private HTMLUtils() { + } public static SpannableStringBuilder getSpannableFromHtml(Activity activity, String html) { CharSequence sequence; if (Build.VERSION.SDK_INT >= 24) { sequence = Html.fromHtml(html, Html.FROM_HTML_MODE_LEGACY); - } else { + } + else { //noinspection deprecation sequence = Html.fromHtml(html); } @@ -59,7 +61,8 @@ public class HTMLUtils { intent.putExtras(extras); intent.setFlags(FLAG_ACTIVITY_NEW_TASK); context.startActivity(intent); - } else if (target.is(ThmmyPage.PageCategory.PROFILE)) { + } + else if (target.is(ThmmyPage.PageCategory.PROFILE)) { Intent intent = new Intent(context, ProfileActivity.class); Bundle extras = new Bundle(); extras.putString(BUNDLE_PROFILE_URL, span.getURL()); @@ -68,7 +71,8 @@ public class HTMLUtils { intent.putExtras(extras); intent.setFlags(FLAG_ACTIVITY_NEW_TASK); context.startActivity(intent); - } else if (target.is(ThmmyPage.PageCategory.INDEX)) { + } + else if (target.is(ThmmyPage.PageCategory.INDEX)) { Intent intent = new Intent(context, MainActivity.class); intent.setFlags(FLAG_ACTIVITY_NEW_TASK); context.startActivity(intent); diff --git a/app/src/main/java/gr/thmmy/mthmmy/utils/LaunchType.java b/app/src/main/java/gr/thmmy/mthmmy/utils/LaunchType.java index 29411b55..eb167556 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/utils/LaunchType.java +++ b/app/src/main/java/gr/thmmy/mthmmy/utils/LaunchType.java @@ -24,11 +24,13 @@ public class LaunchType { if (currentVersionCode == savedVersionCode) { //This is just a normal run return LAUNCH_TYPE.NORMAL_LAUNCH; - } else if (savedVersionCode == notThere) { + } + else if (savedVersionCode == notThere) { //Updates the shared preferences with the current version code prefs.edit().putInt(PREF_VERSION_CODE_KEY, currentVersionCode).apply(); return LAUNCH_TYPE.FIRST_LAUNCH_EVER; - } else if (currentVersionCode > savedVersionCode) { + } + else if (currentVersionCode > savedVersionCode) { //Updates the shared preferences with the current version code prefs.edit().putInt(PREF_VERSION_CODE_KEY, currentVersionCode).apply(); return LAUNCH_TYPE.FIRST_LAUNCH_AFTER_UPDATE; diff --git a/app/src/main/java/gr/thmmy/mthmmy/utils/TakePhoto.java b/app/src/main/java/gr/thmmy/mthmmy/utils/TakePhoto.java index c5b4c490..0f34375a 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/utils/TakePhoto.java +++ b/app/src/main/java/gr/thmmy/mthmmy/utils/TakePhoto.java @@ -86,7 +86,7 @@ public class TakePhoto { File imageFolder = new File(Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DCIM) + File.separator + "mTHMMY"); - if (!imageFolder.exists()&&!imageFolder.mkdirs()) { + if (!imageFolder.exists() && !imageFolder.mkdirs()) { Timber.w("Photos folder build returned false in %s", TakePhoto.class.getSimpleName()); Toast.makeText(context, "Couldn't create photos directory", Toast.LENGTH_SHORT).show(); return null; diff --git a/app/src/main/java/gr/thmmy/mthmmy/utils/crashreporting/CrashReporter.java b/app/src/main/java/gr/thmmy/mthmmy/utils/crashreporting/CrashReporter.java index 4842013c..0d7c352b 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/utils/crashreporting/CrashReporter.java +++ b/app/src/main/java/gr/thmmy/mthmmy/utils/crashreporting/CrashReporter.java @@ -13,7 +13,8 @@ import gr.thmmy.mthmmy.utils.parsing.ParseHelpers; public class CrashReporter { private static final int STRING_BATCH_LENGTH = 250; - private CrashReporter() {} + private CrashReporter() { + } public static void reportForumInfo(Document document) { ParseHelpers.Theme theme = ParseHelpers.parseTheme(document); diff --git a/app/src/main/java/gr/thmmy/mthmmy/utils/crashreporting/CrashReportingTree.java b/app/src/main/java/gr/thmmy/mthmmy/utils/crashreporting/CrashReportingTree.java index 77d4e352..75bbff9c 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/utils/crashreporting/CrashReportingTree.java +++ b/app/src/main/java/gr/thmmy/mthmmy/utils/crashreporting/CrashReportingTree.java @@ -9,7 +9,8 @@ import com.google.firebase.crashlytics.FirebaseCrashlytics; import timber.log.Timber.DebugTree; public class CrashReportingTree extends DebugTree { - private FirebaseCrashlytics firebaseCrashlytics; + private FirebaseCrashlytics firebaseCrashlytics; + public CrashReportingTree() { super(); firebaseCrashlytics = FirebaseCrashlytics.getInstance(); @@ -27,15 +28,15 @@ public class CrashReportingTree extends DebugTree { level = 'I'; else if (priority == Log.WARN) level = 'W'; - else if(priority == Log.ERROR) + else if (priority == Log.ERROR) level = 'E'; else level = 'A'; firebaseCrashlytics.log(level + "/" + tag + ": " + message); - if(priority == Log.ERROR) { - if (t!=null) + if (priority == Log.ERROR) { + if (t != null) firebaseCrashlytics.recordException(t); else firebaseCrashlytics.recordException(new Exception(message)); diff --git a/app/src/main/java/gr/thmmy/mthmmy/utils/networking/NetworkTask.java b/app/src/main/java/gr/thmmy/mthmmy/utils/networking/NetworkTask.java index 0ba26dd3..7d1c2189 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/utils/networking/NetworkTask.java +++ b/app/src/main/java/gr/thmmy/mthmmy/utils/networking/NetworkTask.java @@ -36,7 +36,8 @@ public abstract class NetworkTask extends ExternalAsyncTask this.onNetworkTaskFinishedListener = onNetworkTaskFinishedListener; } - public NetworkTask() {} + public NetworkTask() { + } @Override protected Parcel doInBackground(String... input) { @@ -85,7 +86,7 @@ public abstract class NetworkTask extends ExternalAsyncTask // BaseApplication.getInstance().getSessionManager().clearSessionData(); // BaseApplication.getInstance().getSessionManager().guestLogin(); return new Parcel<>(SessionManager.INVALID_SESSION, null); - }catch (Exception e) { + } catch (Exception e) { Timber.e(e); return new Parcel<>(NetworkResultCodes.PERFORM_TASK_ERROR, null); } diff --git a/app/src/main/java/gr/thmmy/mthmmy/utils/parsing/NewParseTask.java b/app/src/main/java/gr/thmmy/mthmmy/utils/parsing/NewParseTask.java index 754e7825..9df4919d 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/utils/parsing/NewParseTask.java +++ b/app/src/main/java/gr/thmmy/mthmmy/utils/parsing/NewParseTask.java @@ -17,7 +17,8 @@ public abstract class NewParseTask extends NetworkTask { super(onTaskStartedListener, onParseTaskFinishedListener); } - public NewParseTask() {} + public NewParseTask() { + } @Override protected final T performTask(Document document, Response response) { @@ -30,5 +31,5 @@ public abstract class NewParseTask extends NetworkTask { } } - protected abstract T parse (Document document, Response response) throws ParseException; + protected abstract T parse(Document document, Response response) throws ParseException; } diff --git a/app/src/main/java/gr/thmmy/mthmmy/utils/parsing/ParseException.java b/app/src/main/java/gr/thmmy/mthmmy/utils/parsing/ParseException.java index 5fc06664..dc4a1a38 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/utils/parsing/ParseException.java +++ b/app/src/main/java/gr/thmmy/mthmmy/utils/parsing/ParseException.java @@ -4,7 +4,8 @@ package gr.thmmy.mthmmy.utils.parsing; * Use ParseException for errors while parsing. */ public class ParseException extends RuntimeException { - public ParseException() {} + public ParseException() { + } public ParseException(String message) { super(message); diff --git a/app/src/main/java/gr/thmmy/mthmmy/utils/parsing/ParseHelpers.java b/app/src/main/java/gr/thmmy/mthmmy/utils/parsing/ParseHelpers.java index a4acb3ec..2aea53c4 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/utils/parsing/ParseHelpers.java +++ b/app/src/main/java/gr/thmmy/mthmmy/utils/parsing/ParseHelpers.java @@ -56,7 +56,8 @@ public class ParseHelpers { if (welcomingGuest != null && welcomingGuest.text().contains("Welcome")) return ENGLISH; return PAGE_INCOMPLETE; - } else if (welcoming.text().contains("Καλώς ορίσατε")) return GREEK; + } + else if (welcoming.text().contains("Καλώς ορίσατε")) return GREEK; else if (welcoming.text().contains("Hey")) return ENGLISH; else return UNKNOWN_LANGUAGE; } @@ -72,7 +73,7 @@ public class ParseHelpers { public static Theme parseTheme(Document page) { Element stylesheet = page.select("link[rel=stylesheet]").first(); - if(stylesheet!=null){ + if (stylesheet != null) { if (stylesheet.attr("href").contains("scribbles2")) return Theme.SCRIBBLES2; else if (stylesheet.attr("href").contains("helios_multi")) @@ -168,7 +169,7 @@ public class ParseHelpers { + "https://img.youtube.com/vi/" + videoId + "/default.jpg');\">
" - ); + ); ++counter; } return fixed; diff --git a/app/src/main/java/gr/thmmy/mthmmy/utils/parsing/ParseTask.java b/app/src/main/java/gr/thmmy/mthmmy/utils/parsing/ParseTask.java index 9ead4364..8f195924 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/utils/parsing/ParseTask.java +++ b/app/src/main/java/gr/thmmy/mthmmy/utils/parsing/ParseTask.java @@ -21,14 +21,17 @@ import timber.log.Timber; */ public abstract class ParseTask extends AsyncTask { protected String url; + public enum ResultCode { SUCCESS, PARSING_ERROR, NETWORK_ERROR, OTHER_ERROR } - protected abstract void parse (Document document) throws ParseException; + protected abstract void parse(Document document) throws ParseException; + protected abstract void postExecution(ParseTask.ResultCode result); //ResultCode.NETWORK_ERROR is handled automatically - protected void postParsing (){} + protected void postParsing() { + } protected Request prepareRequest(String... params) { url = params[0]; diff --git a/app/src/main/java/gr/thmmy/mthmmy/utils/parsing/ThmmyDateTimeParser.java b/app/src/main/java/gr/thmmy/mthmmy/utils/parsing/ThmmyDateTimeParser.java index 6e27ca61..0d59104c 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/utils/parsing/ThmmyDateTimeParser.java +++ b/app/src/main/java/gr/thmmy/mthmmy/utils/parsing/ThmmyDateTimeParser.java @@ -39,9 +39,10 @@ public class ThmmyDateTimeParser { private static final Pattern pattern = Pattern.compile("\\s((1[3-9]|2[0-3]):)"); - private ThmmyDateTimeParser(){} + private ThmmyDateTimeParser() { + } - public static String convertToTimestamp(String thmmyDateTime){ + public static String convertToTimestamp(String thmmyDateTime) { Timber.v("Will attempt to convert %s to timestamp.", thmmyDateTime); String originalDateTime = thmmyDateTime; DateTimeZone dtz = getDtz(); @@ -50,32 +51,30 @@ public class ThmmyDateTimeParser { thmmyDateTime = purifyTodayDateTime(thmmyDateTime); // Add today's date for the first two cases - if(thmmyDateTime.charAt(2)==':') + if (thmmyDateTime.charAt(2) == ':') thmmyDateTime = (new DateTime()).toString("MMMM d, Y, ") + thmmyDateTime; // Don't even ask - if(thmmyDateTime.contains("am")) - thmmyDateTime = thmmyDateTime.replaceAll("\\s00:"," 12:"); + if (thmmyDateTime.contains("am")) + thmmyDateTime = thmmyDateTime.replaceAll("\\s00:", " 12:"); // For the stupid format 23:54:12 pm Matcher matcher = pattern.matcher(thmmyDateTime); if (matcher.find()) - thmmyDateTime = thmmyDateTime.replaceAll("\\spm",""); + thmmyDateTime = thmmyDateTime.replaceAll("\\spm", ""); DateTime dateTime; - try{ - dateTime=formatter.withZone(dtz).withLocale(englishLocale).parseDateTime(thmmyDateTime); - } - catch (IllegalArgumentException e1){ + try { + dateTime = formatter.withZone(dtz).withLocale(englishLocale).parseDateTime(thmmyDateTime); + } catch (IllegalArgumentException e1) { Timber.v("Parsing DateTime %s using English Locale failed.", thmmyDateTime); - try{ + try { DateFormatSymbols dfs = DateTimeUtils.getDateFormatSymbols(greekLocale); - thmmyDateTime = thmmyDateTime.replace("am",dfs.getAmPmStrings()[0]); - thmmyDateTime = thmmyDateTime.replace("pm",dfs.getAmPmStrings()[1]); + thmmyDateTime = thmmyDateTime.replace("am", dfs.getAmPmStrings()[0]); + thmmyDateTime = thmmyDateTime.replace("pm", dfs.getAmPmStrings()[1]); Timber.v("Attempting to parse DateTime %s using Greek Locale...", thmmyDateTime); - dateTime=formatter.withZone(dtz).withLocale(greekLocale).parseDateTime(thmmyDateTime); - } - catch (IllegalArgumentException e2){ + dateTime = formatter.withZone(dtz).withLocale(greekLocale).parseDateTime(thmmyDateTime); + } catch (IllegalArgumentException e2) { Timber.d("Parsing DateTime %s using Greek Locale failed too.", thmmyDateTime); Timber.e("Couldn't convert DateTime %s to timestamp!", originalDateTime); return null; @@ -87,24 +86,24 @@ public class ThmmyDateTimeParser { return timestamp; } - public static String simplifyDateTime(String dateTime){ + public static String simplifyDateTime(String dateTime) { return removeSeconds(purifyTodayDateTime(dateTime)); } // Converts e.g. Today at 12:16:48 -> 12:16:48, but October 03, 2019, 16:40:18 remains as is @VisibleForTesting - static String purifyTodayDateTime(String dateTime){ + static String purifyTodayDateTime(String dateTime) { return dateTime.replaceAll("(Today at |Σήμερα στις )(.+)", "$2"); } // Converts e.g. 12:16:48 -> 12:16, October 03, 2019, 16:40:18 -> 12:16 October 03, 2019, 16:40 - private static String removeSeconds(String dateTime){ + private static String removeSeconds(String dateTime) { return dateTime.replaceAll("(.*):\\d+($|\\s.*)", "$1$2"); } @VisibleForTesting - private static DateTimeZone getDtz(){ - if(!BaseApplication.getInstance().getSessionManager().isLoggedIn()) + private static DateTimeZone getDtz() { + if (!BaseApplication.getInstance().getSessionManager().isLoggedIn()) return DateTimeZone.forID("Europe/Athens"); else return DateTimeZone.getDefault(); diff --git a/app/src/main/java/gr/thmmy/mthmmy/utils/parsing/ThmmyParser.java b/app/src/main/java/gr/thmmy/mthmmy/utils/parsing/ThmmyParser.java index cc47b140..46651ea7 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/utils/parsing/ThmmyParser.java +++ b/app/src/main/java/gr/thmmy/mthmmy/utils/parsing/ThmmyParser.java @@ -138,7 +138,8 @@ public class ThmmyParser { if (separatorIndex > 0) { attribute = startTag.substring(separatorIndex); name = startTag.substring(0, separatorIndex); - } else + } + else name = startTag; if (name.startsWith("/")) { @@ -177,7 +178,8 @@ public class ThmmyParser { attribute = fullAttribute.substring(1, equalsIndex); attributeValue = fullAttribute.substring(equalsIndex + 2, fullAttribute.length() - 1); name = startTag.substring(0, separatorIndex); - } else + } + else name = startTag; if (name.startsWith("/")) { diff --git a/app/src/main/java/gr/thmmy/mthmmy/utils/ui/CenterVerticalSpan.java b/app/src/main/java/gr/thmmy/mthmmy/utils/ui/CenterVerticalSpan.java index 8d0c3d60..424022c0 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/utils/ui/CenterVerticalSpan.java +++ b/app/src/main/java/gr/thmmy/mthmmy/utils/ui/CenterVerticalSpan.java @@ -15,7 +15,7 @@ public class CenterVerticalSpan extends ReplacementSpan { } @Override - public void draw(@NonNull Canvas canvas, CharSequence text, int start, int end, float x, int top, int y, int bottom,@NonNull Paint paint) { + public void draw(@NonNull Canvas canvas, CharSequence text, int start, int end, float x, int top, int y, int bottom, @NonNull Paint paint) { text = text.subSequence(start, end); Rect charSize = new Rect(); paint.getTextBounds(text.toString(), 0, 1, charSize); diff --git a/app/src/main/java/gr/thmmy/mthmmy/utils/ui/ImageDownloadDialogBuilder.java b/app/src/main/java/gr/thmmy/mthmmy/utils/ui/ImageDownloadDialogBuilder.java index 33b63d79..0b80d646 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/utils/ui/ImageDownloadDialogBuilder.java +++ b/app/src/main/java/gr/thmmy/mthmmy/utils/ui/ImageDownloadDialogBuilder.java @@ -20,7 +20,7 @@ import timber.log.Timber; import static android.content.Context.CLIPBOARD_SERVICE; -public class ImageDownloadDialogBuilder extends AlertDialog.Builder{ +public class ImageDownloadDialogBuilder extends AlertDialog.Builder { private static final String[] colors = {"Copy image location", "Save Image"}; private Context context; @@ -32,7 +32,7 @@ public class ImageDownloadDialogBuilder extends AlertDialog.Builder{ this.imageURL = imageURL; setItems(colors, (dialog, which) -> { - if(which == 0) + if (which == 0) copyUrlToClipboard(); else { try { @@ -46,11 +46,11 @@ public class ImageDownloadDialogBuilder extends AlertDialog.Builder{ }); } - private void copyUrlToClipboard(){ + private void copyUrlToClipboard() { ClipboardManager clipboard = (ClipboardManager) BaseApplication.getInstance().getSystemService(CLIPBOARD_SERVICE); ClipData clip = ClipData.newPlainText("ReactiveWebViewCopiedText", imageURL); clipboard.setPrimaryClip(clip); - Toast.makeText(BaseApplication.getInstance().getApplicationContext(),context.getString(R.string.link_copied_msg),Toast.LENGTH_SHORT).show(); + Toast.makeText(BaseApplication.getInstance().getApplicationContext(), context.getString(R.string.link_copied_msg), Toast.LENGTH_SHORT).show(); } private BaseActivity getBaseActivity() { @@ -58,7 +58,7 @@ public class ImageDownloadDialogBuilder extends AlertDialog.Builder{ while (baseActivityContext instanceof ContextWrapper) { if (context instanceof BaseActivity) return (BaseActivity) context; - baseActivityContext = ((ContextWrapper)context).getBaseContext(); + baseActivityContext = ((ContextWrapper) context).getBaseContext(); } return null; } diff --git a/app/src/main/java/gr/thmmy/mthmmy/utils/ui/ScrollAwareFABBehavior.java b/app/src/main/java/gr/thmmy/mthmmy/utils/ui/ScrollAwareFABBehavior.java index 78c5f196..ccd4975d 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/utils/ui/ScrollAwareFABBehavior.java +++ b/app/src/main/java/gr/thmmy/mthmmy/utils/ui/ScrollAwareFABBehavior.java @@ -45,7 +45,8 @@ public class ScrollAwareFABBehavior extends CoordinatorLayout.Behavior if (bottomNavBar.getVisibility() == View.VISIBLE && (dyConsumed > 0 || (!target.canScrollVertically(-1) && dyConsumed == 0 && dyUnconsumed > 50))) { hide(bottomNavBar); - } else if (bottomNavBar.getVisibility() == View.INVISIBLE && (dyConsumed < 0 + } + else if (bottomNavBar.getVisibility() == View.INVISIBLE && (dyConsumed < 0 || (!target.canScrollVertically(-1) && dyConsumed == 0 && dyUnconsumed < -50))) { show(bottomNavBar); } diff --git a/app/src/main/java/gr/thmmy/mthmmy/viewmodel/ShoutboxViewModel.java b/app/src/main/java/gr/thmmy/mthmmy/viewmodel/ShoutboxViewModel.java index c3f4dce5..6427d8ed 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/viewmodel/ShoutboxViewModel.java +++ b/app/src/main/java/gr/thmmy/mthmmy/viewmodel/ShoutboxViewModel.java @@ -28,7 +28,8 @@ public class ShoutboxViewModel extends ViewModel { } public void sendShout(String shout) { - if (shoutboxMutableLiveData.getValue() == null) throw new IllegalStateException("Shoutbox task has not finished yet!"); + if (shoutboxMutableLiveData.getValue() == null) + throw new IllegalStateException("Shoutbox task has not finished yet!"); Shoutbox shoutbox = shoutboxMutableLiveData.getValue(); new SendShoutTask(onSendShoutTaskStarted, onSendShoutTaskFinished) .execute(shoutbox.getSendShoutUrl(), shout, shoutbox.getSc(), diff --git a/app/src/main/java/gr/thmmy/mthmmy/viewmodel/TopicViewModel.java b/app/src/main/java/gr/thmmy/mthmmy/viewmodel/TopicViewModel.java index 49f619c2..d8cc3bba 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/viewmodel/TopicViewModel.java +++ b/app/src/main/java/gr/thmmy/mthmmy/viewmodel/TopicViewModel.java @@ -100,7 +100,8 @@ public class TopicViewModel extends BaseViewModel implements TopicTask.OnTopicTa } public void reloadPage() { - if (topicUrl == null) throw new NullPointerException("No topic task has been requested yet!"); + if (topicUrl == null) + throw new NullPointerException("No topic task has been requested yet!"); Timber.i("Reloading page"); loadUrl(topicUrl); } @@ -110,13 +111,15 @@ public class TopicViewModel extends BaseViewModel implements TopicTask.OnTopicTa * in the url before refreshing */ public void resetPage() { - if (topicUrl == null) throw new NullPointerException("No topic task has been requested yet!"); + if (topicUrl == null) + throw new NullPointerException("No topic task has been requested yet!"); Timber.i("Resetting page"); loadUrl(ParseHelpers.getBaseURL(topicUrl) + "." + String.valueOf(currentPageIndex * 15)); } public void resetPageThen(Runnable runnable) { - if (topicUrl == null) throw new NullPointerException("No topic task has been requested yet!"); + if (topicUrl == null) + throw new NullPointerException("No topic task has been requested yet!"); Timber.i("Resetting page"); stopLoading(); currentTopicTask = new TopicTask(topicTaskObserver, result -> { @@ -134,18 +137,21 @@ public class TopicViewModel extends BaseViewModel implements TopicTask.OnTopicTa Timber.i("Changing to page " + pageRequested + 1); loadUrl(ParseHelpers.getBaseURL(topicUrl) + "." + pageRequested * 15); pageIndicatorIndex.setValue(pageRequested + 1); - } else { + } + else { stopLoading(); } } public boolean submitVote(LinearLayout optionsLayout) { - if (topicItems.getValue() == null) throw new NullPointerException("Topic task has not finished yet!"); + if (topicItems.getValue() == null) + throw new NullPointerException("Topic task has not finished yet!"); ArrayList votes = new ArrayList<>(); if (optionsLayout.getChildAt(0) instanceof RadioGroup) { RadioGroup optionsRadioGroup = (RadioGroup) optionsLayout.getChildAt(0); votes.add(optionsRadioGroup.getCheckedRadioButtonId()); - } else if (optionsLayout.getChildAt(0) instanceof CheckBox) { + } + else if (optionsLayout.getChildAt(0) instanceof CheckBox) { for (int i = 0; i < optionsLayout.getChildCount(); i++) { CheckBox checkBox = (CheckBox) optionsLayout.getChildAt(i); if (checkBox.isChecked()) @@ -164,7 +170,8 @@ public class TopicViewModel extends BaseViewModel implements TopicTask.OnTopicTa } public void removeVote() { - if (topicItems.getValue() == null) throw new NullPointerException("Topic task has not finished yet!"); + if (topicItems.getValue() == null) + throw new NullPointerException("Topic task has not finished yet!"); RemoveVoteTask removeVoteTask = new RemoveVoteTask(); removeVoteTask.setOnTaskStartedListener(removeVoteTaskStartedListener); removeVoteTask.setOnNetworkTaskFinishedListener(removeVoteTaskFinishedListener); @@ -308,14 +315,15 @@ public class TopicViewModel extends BaseViewModel implements TopicTask.OnTopicTa throw new NullPointerException("No page has been loaded yet!"); int oldIndicatorIndex = this.pageIndicatorIndex.getValue(); this.pageIndicatorIndex.setValue(pageIndicatorIndex); - if (changePage && oldIndicatorIndex != this.pageIndicatorIndex.getValue()) loadPageIndicated(); + if (changePage && oldIndicatorIndex != this.pageIndicatorIndex.getValue()) + loadPageIndicated(); } // <-------------Just getters, setters and helper methods below here----------------> public int getTopicId() { if (pageTopicId.getValue() == null) - throw new NullPointerException("No page has been loaded yet!"); + throw new NullPointerException("No page has been loaded yet!"); return pageTopicId.getValue(); } @@ -461,12 +469,12 @@ public class TopicViewModel extends BaseViewModel implements TopicTask.OnTopicTa } public int getCurrentPageIndex() { - if (currentPageIndex == 0) throw new NullPointerException("No page has been loaded yet!"); + if (currentPageIndex == 0) throw new NullPointerException("No page has been loaded yet!"); return currentPageIndex; } public int getPageCount() { - if (pageCount == 0) throw new NullPointerException("No page has been loaded yet!"); + if (pageCount == 0) throw new NullPointerException("No page has been loaded yet!"); return pageCount; } @@ -484,7 +492,7 @@ public class TopicViewModel extends BaseViewModel implements TopicTask.OnTopicTa public int postCount() { if (topicItems.getValue() == null) - throw new NullPointerException("No page has been loaded yet!"); + throw new NullPointerException("No page has been loaded yet!"); return topicItems.getValue().size(); } } diff --git a/app/src/main/java/gr/thmmy/mthmmy/views/ReactiveWebView.java b/app/src/main/java/gr/thmmy/mthmmy/views/ReactiveWebView.java index eddd6781..c81675e3 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/views/ReactiveWebView.java +++ b/app/src/main/java/gr/thmmy/mthmmy/views/ReactiveWebView.java @@ -41,7 +41,7 @@ public class ReactiveWebView extends WebView { init(); } - private void init(){ + private void init() { setOnLongClickListener(); this.setVerticalScrollBarEnabled(false); } @@ -53,7 +53,7 @@ public class ReactiveWebView extends WebView { downTime = event.getEventTime(); break; case MotionEvent.ACTION_UP: - if(event.getEventTime() - downTime <= MAX_TOUCH_DURATION) + if (event.getEventTime() - downTime <= MAX_TOUCH_DURATION) performClick(); break; default: @@ -65,27 +65,27 @@ public class ReactiveWebView extends WebView { @Override public boolean performClick() { WebView.HitTestResult result = this.getHitTestResult(); - if(result.getType() == WebView.HitTestResult.IMAGE_TYPE){ + if (result.getType() == WebView.HitTestResult.IMAGE_TYPE) { String imageURL = result.getExtra(); displayPhotoViewImage(context, imageURL); } return super.performClick(); } - private void setOnLongClickListener(){ + private void setOnLongClickListener() { this.setOnLongClickListener(v -> { HitTestResult result = ReactiveWebView.this.getHitTestResult(); - if(result.getType() == HitTestResult.SRC_ANCHOR_TYPE) + if (result.getType() == HitTestResult.SRC_ANCHOR_TYPE) copyUrlToClipboard(result.getExtra()); - else if(result.getType() == WebView.HitTestResult.IMAGE_TYPE) { + else if (result.getType() == WebView.HitTestResult.IMAGE_TYPE) { String imageURL = result.getExtra(); showImageDownloadDialog(imageURL); } - else if(result.getType() == HitTestResult.SRC_IMAGE_ANCHOR_TYPE) { + else if (result.getType() == HitTestResult.SRC_IMAGE_ANCHOR_TYPE) { final String imageURL = result.getExtra(); Uri uri = Uri.parse(imageURL); String videoId = uri.getQueryParameter(VIDEO_ID_PARAMETER); - if (videoId!=null) + if (videoId != null) copyUrlToClipboard("https://www.youtube.com/watch?v=" + videoId); else showImageDownloadDialog(imageURL); @@ -94,14 +94,14 @@ public class ReactiveWebView extends WebView { }); } - private void copyUrlToClipboard(String urlToCopy){ + private void copyUrlToClipboard(String urlToCopy) { ClipboardManager clipboard = (ClipboardManager) BaseApplication.getInstance().getSystemService(CLIPBOARD_SERVICE); ClipData clip = ClipData.newPlainText("ReactiveWebViewCopiedText", urlToCopy); clipboard.setPrimaryClip(clip); - Toast.makeText(BaseApplication.getInstance().getApplicationContext(),context.getString(R.string.link_copied_msg),Toast.LENGTH_SHORT).show(); + Toast.makeText(BaseApplication.getInstance().getApplicationContext(), context.getString(R.string.link_copied_msg), Toast.LENGTH_SHORT).show(); } - private void showImageDownloadDialog(String imageURL){ + private void showImageDownloadDialog(String imageURL) { ImageDownloadDialogBuilder builder = new ImageDownloadDialogBuilder(context, imageURL); builder.show(); } diff --git a/app/src/main/java/gr/thmmy/mthmmy/views/RelativeTimeTextView.java b/app/src/main/java/gr/thmmy/mthmmy/views/RelativeTimeTextView.java index 43ea351f..b0678633 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/views/RelativeTimeTextView.java +++ b/app/src/main/java/gr/thmmy/mthmmy/views/RelativeTimeTextView.java @@ -67,6 +67,7 @@ public class RelativeTimeTextView extends TextView { * Sets the reference time for this view. At any moment, the view will render a relative time period relative to the time set here. *

* This value can also be set with the XML attribute {@code reference_time} + * * @param referenceTime The timestamp (in milliseconds since epoch) that will be the reference point for this view. */ public void setReferenceTime(long referenceTime) { @@ -120,13 +121,14 @@ public class RelativeTimeTextView extends TextView { super.onVisibilityChanged(changedView, visibility); if (visibility == GONE || visibility == INVISIBLE) { stopTaskForPeriodicallyUpdatingRelativeTime(); - } else { + } + else { startTaskForPeriodicallyUpdatingRelativeTime(); } } private void startTaskForPeriodicallyUpdatingRelativeTime() { - if(mUpdateTimeTask.isDetached()) initUpdateTimeTask(); + if (mUpdateTimeTask.isDetached()) initUpdateTimeTask(); mHandler.post(mUpdateTimeTask); isUpdateTaskRunning = true; } @@ -136,7 +138,7 @@ public class RelativeTimeTextView extends TextView { } private void stopTaskForPeriodicallyUpdatingRelativeTime() { - if(isUpdateTaskRunning) { + if (isUpdateTaskRunning) { mUpdateTimeTask.detach(); mHandler.removeCallbacks(mUpdateTimeTask); isUpdateTaskRunning = false; @@ -158,7 +160,7 @@ public class RelativeTimeTextView extends TextView { return; } - SavedState ss = (SavedState)state; + SavedState ss = (SavedState) state; mReferenceTime = ss.referenceTime; super.onRestoreInstanceState(ss.getSuperState()); } @@ -219,9 +221,11 @@ public class RelativeTimeTextView extends TextView { long interval = INITIAL_UPDATE_INTERVAL; if (difference > DateUtils.WEEK_IN_MILLIS) { interval = DateUtils.WEEK_IN_MILLIS; - } else if (difference > DateUtils.DAY_IN_MILLIS) { + } + else if (difference > DateUtils.DAY_IN_MILLIS) { interval = DateUtils.DAY_IN_MILLIS; - } else if (difference > DateUtils.HOUR_IN_MILLIS) { + } + else if (difference > DateUtils.HOUR_IN_MILLIS) { interval = DateUtils.HOUR_IN_MILLIS; } rttv.updateTextDisplay(); diff --git a/app/src/main/java/gr/thmmy/mthmmy/views/ToggledBackgroundButton.java b/app/src/main/java/gr/thmmy/mthmmy/views/ToggledBackgroundButton.java index 296ecf77..0317e0b8 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/views/ToggledBackgroundButton.java +++ b/app/src/main/java/gr/thmmy/mthmmy/views/ToggledBackgroundButton.java @@ -1,4 +1,5 @@ package gr.thmmy.mthmmy.views; + import android.content.Context; import android.util.AttributeSet; diff --git a/app/src/main/java/gr/thmmy/mthmmy/views/editorview/EditorView.java b/app/src/main/java/gr/thmmy/mthmmy/views/editorview/EditorView.java index df39daa3..b5c65f0a 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/views/editorview/EditorView.java +++ b/app/src/main/java/gr/thmmy/mthmmy/views/editorview/EditorView.java @@ -85,7 +85,8 @@ public class EditorView extends LinearLayout implements EmojiInputField { if (!emojiKeyboard.isVisible()) { InputMethodManager imm = (InputMethodManager) context.getSystemService(Activity.INPUT_METHOD_SERVICE); imm.showSoftInput(editText, InputMethodManager.SHOW_IMPLICIT); - } else { + } + else { InputMethodManager imm = (InputMethodManager) context.getSystemService(Activity.INPUT_METHOD_SERVICE); imm.hideSoftInputFromWindow(getWindowToken(), 0); requestEditTextFocus(); @@ -128,244 +129,246 @@ public class EditorView extends LinearLayout implements EmojiInputField { getResources().getDimension(R.dimen.editor_format_button_margin_between); int columns = (int) Math.floor(displayMetrics.widthPixels / itemWidth); formatButtonsRecyclerview.setLayoutManager(new GridLayoutManager(context, columns)); - formatButtonsRecyclerview.setAdapter( - new FormatButtonsAdapter( - (view, drawableId) -> { - boolean hadTextSelection; - switch (drawableId) { - case R.drawable.ic_format_bold: - hadTextSelection = editText.hasSelection(); - getText().insert(editText.getSelectionStart(), "[b]"); - getText().insert(editText.getSelectionEnd(), "[/b]"); - editText.setSelection( - hadTextSelection - ? editText.getSelectionEnd() - : editText.getSelectionStart() - 4); - break; - case R.drawable.ic_format_italic: - hadTextSelection = editText.hasSelection(); - getText().insert(editText.getSelectionStart(), "[i]"); - getText().insert(editText.getSelectionEnd(), "[/i]"); - editText.setSelection( - hadTextSelection - ? editText.getSelectionEnd() - : editText.getSelectionStart() - 4); - break; - case R.drawable.ic_format_underlined: - hadTextSelection = editText.hasSelection(); - getText().insert(editText.getSelectionStart(), "[u]"); - getText().insert(editText.getSelectionEnd(), "[/u]"); - editText.setSelection( - hadTextSelection - ? editText.getSelectionEnd() - : editText.getSelectionStart() - 4); - break; - case R.drawable.ic_strikethrough_s: - hadTextSelection = editText.hasSelection(); - getText().insert(editText.getSelectionStart(), "[s]"); - getText().insert(editText.getSelectionEnd(), "[/s]"); - editText.setSelection( - hadTextSelection - ? editText.getSelectionEnd() - : editText.getSelectionStart() - 4); - break; - case R.drawable.ic_format_color_text: - int selectionStart = editText.getSelectionStart(); - int selectionEnd = editText.getSelectionEnd(); - PopupWindow popupWindow = new PopupWindow(view.getContext()); - popupWindow.setHeight(LayoutParams.WRAP_CONTENT); - popupWindow.setWidth(LayoutParams.WRAP_CONTENT); - popupWindow.setFocusable(true); - ScrollView colorPickerScrollview = - (ScrollView) - LayoutInflater.from(context) - .inflate(R.layout.editor_view_color_picker, null); - LinearLayout colorPicker = (LinearLayout) colorPickerScrollview.getChildAt(0); - popupWindow.setContentView(colorPickerScrollview); - for (int i = 0; i < colorPicker.getChildCount(); i++) { - TextView child = (TextView) colorPicker.getChildAt(i); - child.setOnClickListener( - v -> { - boolean hadTextSelection2 = editText.hasSelection(); - getText() - .insert( - editText.getSelectionStart(), - "[color=" + colors.get(v.getId()) + "]"); - getText().insert(editText.getSelectionEnd(), "[/color]"); - editText.setSelection( - hadTextSelection2 - ? editText.getSelectionEnd() - : editText.getSelectionStart() - 8); - popupWindow.dismiss(); - }); - } - popupWindow.showAsDropDown(view); - if (Build.VERSION.SDK_INT < Build.VERSION_CODES.M) { - new AsyncTask() { - @Override - protected Void doInBackground(Void... voids) { - try { - Thread.sleep(100); - } catch (InterruptedException e) { - Timber.e(e); - } - return null; - } - - @Override - protected void onPostExecute(Void aVoid) { - editText.setSelection(selectionStart, selectionEnd); - } - }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR); - } - break; - case R.drawable.ic_format_size: - hadTextSelection = editText.hasSelection(); - getText().insert(editText.getSelectionStart(), "[size=10pt]"); - getText().insert(editText.getSelectionEnd(), "[/size]"); - editText.setSelection( - hadTextSelection - ? editText.getSelectionEnd() - : editText.getSelectionStart() - 7); - break; - case R.drawable.ic_text_format: - hadTextSelection = editText.hasSelection(); - getText().insert(editText.getSelectionStart(), "[font=Verdana]"); - getText().insert(editText.getSelectionEnd(), "[/font]"); - editText.setSelection( - hadTextSelection - ? editText.getSelectionEnd() - : editText.getSelectionStart() - 7); - break; - case R.drawable.ic_format_list_bulleted: - hadTextSelection = editText.hasSelection(); - getText().insert(editText.getSelectionStart(), "[list]\n[li]"); - getText().insert(editText.getSelectionEnd(), "[/li]\n[li][/li]\n[/list]"); - editText.setSelection( - hadTextSelection - ? editText.getSelectionEnd() - 13 - : editText.getSelectionStart() - 23); - break; - case R.drawable.ic_format_align_left: - hadTextSelection = editText.hasSelection(); - getText().insert(editText.getSelectionStart(), "[left]"); - getText().insert(editText.getSelectionEnd(), "[/left]"); - editText.setSelection( - hadTextSelection - ? editText.getSelectionEnd() - : editText.getSelectionStart() - 7); - break; - case R.drawable.ic_format_align_center: - hadTextSelection = editText.hasSelection(); - getText().insert(editText.getSelectionStart(), "[center]"); - getText().insert(editText.getSelectionEnd(), "[/center]"); - editText.setSelection( - hadTextSelection - ? editText.getSelectionEnd() - : editText.getSelectionStart() - 9); - break; - case R.drawable.ic_format_align_right: - hadTextSelection = editText.hasSelection(); - getText().insert(editText.getSelectionStart(), "[right]"); - getText().insert(editText.getSelectionEnd(), "[/right]"); - editText.setSelection( - hadTextSelection - ? editText.getSelectionEnd() - : editText.getSelectionStart() - 8); - break; - case R.drawable.ic_insert_link: - LinearLayout dialogBody = - (LinearLayout) - LayoutInflater.from(context).inflate(R.layout.dialog_create_link, null); - TextInputLayout linkUrl = dialogBody.findViewById(R.id.link_url_input); - linkUrl.setOnClickListener(view1 -> linkUrl.setError(null)); - TextInputLayout linkText = dialogBody.findViewById(R.id.link_text_input); - linkText.setOnClickListener(view2 -> linkText.setError(null)); - hadTextSelection = editText.hasSelection(); - int start = editText.getSelectionStart(), end = editText.getSelectionEnd(); - if (editText.hasSelection()) { - linkText - .getEditText() - .setText( - editText - .getText() - .toString() - .substring( - editText.getSelectionStart(), editText.getSelectionEnd())); - } - AlertDialog linkDialog = - new AlertDialog.Builder(context, R.style.AppTheme_Dark_Dialog) - .setTitle(R.string.dialog_create_link_title) - .setView(dialogBody) - .setPositiveButton(R.string.ok, null) - .setNegativeButton(R.string.cancel, (dialog, which) -> dialog.dismiss()) - .create(); - linkDialog.setOnShowListener( - dialogInterface -> { - Button button = linkDialog.getButton(AlertDialog.BUTTON_POSITIVE); - button.setOnClickListener( - view12 -> { - if (TextUtils.isEmpty( - Objects.requireNonNull(linkUrl.getEditText()) - .getText() - .toString())) { - linkUrl.setError(context.getString(R.string.input_field_required)); - return; - } - - if (hadTextSelection) editText.getText().delete(start, end); - if (!TextUtils.isEmpty(linkText.getEditText().getText())) { - getText() - .insert( - editText.getSelectionStart(), - "[url=" - + linkUrl.getEditText().getText().toString() - + "]" - + linkText.getEditText().getText().toString() - + "[/url]"); - } else - getText() - .insert( - editText.getSelectionStart(), - "[url]" - + linkUrl.getEditText().getText().toString() - + "[/url]"); - linkDialog.dismiss(); - }); - }); - linkDialog.show(); - break; - case R.drawable.ic_format_quote: - hadTextSelection = editText.hasSelection(); - getText().insert(editText.getSelectionStart(), "[quote]"); - getText().insert(editText.getSelectionEnd(), "[/quote]"); - editText.setSelection( - hadTextSelection - ? editText.getSelectionEnd() - : editText.getSelectionStart() - 8); - break; - case R.drawable.ic_code: - hadTextSelection = editText.hasSelection(); - getText().insert(editText.getSelectionStart(), "[code]"); - getText().insert(editText.getSelectionEnd(), "[/code]"); - editText.setSelection( - hadTextSelection - ? editText.getSelectionEnd() - : editText.getSelectionStart() - 7); - break; - case R.drawable.ic_functions: - hadTextSelection = editText.hasSelection(); - getText().insert(editText.getSelectionStart(), "[tex]"); - getText().insert(editText.getSelectionEnd(), "[/tex]"); - editText.setSelection( - hadTextSelection - ? editText.getSelectionEnd() - : editText.getSelectionStart() - 6); - break; - default: - throw new IllegalArgumentException("Unknown format button click"); - } - })); + formatButtonsRecyclerview.setAdapter( + new FormatButtonsAdapter( + (view, drawableId) -> { + boolean hadTextSelection; + switch (drawableId) { + case R.drawable.ic_format_bold: + hadTextSelection = editText.hasSelection(); + getText().insert(editText.getSelectionStart(), "[b]"); + getText().insert(editText.getSelectionEnd(), "[/b]"); + editText.setSelection( + hadTextSelection + ? editText.getSelectionEnd() + : editText.getSelectionStart() - 4); + break; + case R.drawable.ic_format_italic: + hadTextSelection = editText.hasSelection(); + getText().insert(editText.getSelectionStart(), "[i]"); + getText().insert(editText.getSelectionEnd(), "[/i]"); + editText.setSelection( + hadTextSelection + ? editText.getSelectionEnd() + : editText.getSelectionStart() - 4); + break; + case R.drawable.ic_format_underlined: + hadTextSelection = editText.hasSelection(); + getText().insert(editText.getSelectionStart(), "[u]"); + getText().insert(editText.getSelectionEnd(), "[/u]"); + editText.setSelection( + hadTextSelection + ? editText.getSelectionEnd() + : editText.getSelectionStart() - 4); + break; + case R.drawable.ic_strikethrough_s: + hadTextSelection = editText.hasSelection(); + getText().insert(editText.getSelectionStart(), "[s]"); + getText().insert(editText.getSelectionEnd(), "[/s]"); + editText.setSelection( + hadTextSelection + ? editText.getSelectionEnd() + : editText.getSelectionStart() - 4); + break; + case R.drawable.ic_format_color_text: + int selectionStart = editText.getSelectionStart(); + int selectionEnd = editText.getSelectionEnd(); + PopupWindow popupWindow = new PopupWindow(view.getContext()); + popupWindow.setHeight(LayoutParams.WRAP_CONTENT); + popupWindow.setWidth(LayoutParams.WRAP_CONTENT); + popupWindow.setFocusable(true); + ScrollView colorPickerScrollview = + (ScrollView) + LayoutInflater.from(context) + .inflate(R.layout.editor_view_color_picker, null); + LinearLayout colorPicker = (LinearLayout) colorPickerScrollview.getChildAt(0); + popupWindow.setContentView(colorPickerScrollview); + for (int i = 0; i < colorPicker.getChildCount(); i++) { + TextView child = (TextView) colorPicker.getChildAt(i); + child.setOnClickListener( + v -> { + boolean hadTextSelection2 = editText.hasSelection(); + getText() + .insert( + editText.getSelectionStart(), + "[color=" + colors.get(v.getId()) + "]"); + getText().insert(editText.getSelectionEnd(), "[/color]"); + editText.setSelection( + hadTextSelection2 + ? editText.getSelectionEnd() + : editText.getSelectionStart() - 8); + popupWindow.dismiss(); + }); + } + popupWindow.showAsDropDown(view); + if (Build.VERSION.SDK_INT < Build.VERSION_CODES.M) { + new AsyncTask() { + @Override + protected Void doInBackground(Void... voids) { + try { + Thread.sleep(100); + } catch (InterruptedException e) { + Timber.e(e); + } + return null; + } + + @Override + protected void onPostExecute(Void aVoid) { + editText.setSelection(selectionStart, selectionEnd); + } + }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR); + } + break; + case R.drawable.ic_format_size: + hadTextSelection = editText.hasSelection(); + getText().insert(editText.getSelectionStart(), "[size=10pt]"); + getText().insert(editText.getSelectionEnd(), "[/size]"); + editText.setSelection( + hadTextSelection + ? editText.getSelectionEnd() + : editText.getSelectionStart() - 7); + break; + case R.drawable.ic_text_format: + hadTextSelection = editText.hasSelection(); + getText().insert(editText.getSelectionStart(), "[font=Verdana]"); + getText().insert(editText.getSelectionEnd(), "[/font]"); + editText.setSelection( + hadTextSelection + ? editText.getSelectionEnd() + : editText.getSelectionStart() - 7); + break; + case R.drawable.ic_format_list_bulleted: + hadTextSelection = editText.hasSelection(); + getText().insert(editText.getSelectionStart(), "[list]\n[li]"); + getText().insert(editText.getSelectionEnd(), "[/li]\n[li][/li]\n[/list]"); + editText.setSelection( + hadTextSelection + ? editText.getSelectionEnd() - 13 + : editText.getSelectionStart() - 23); + break; + case R.drawable.ic_format_align_left: + hadTextSelection = editText.hasSelection(); + getText().insert(editText.getSelectionStart(), "[left]"); + getText().insert(editText.getSelectionEnd(), "[/left]"); + editText.setSelection( + hadTextSelection + ? editText.getSelectionEnd() + : editText.getSelectionStart() - 7); + break; + case R.drawable.ic_format_align_center: + hadTextSelection = editText.hasSelection(); + getText().insert(editText.getSelectionStart(), "[center]"); + getText().insert(editText.getSelectionEnd(), "[/center]"); + editText.setSelection( + hadTextSelection + ? editText.getSelectionEnd() + : editText.getSelectionStart() - 9); + break; + case R.drawable.ic_format_align_right: + hadTextSelection = editText.hasSelection(); + getText().insert(editText.getSelectionStart(), "[right]"); + getText().insert(editText.getSelectionEnd(), "[/right]"); + editText.setSelection( + hadTextSelection + ? editText.getSelectionEnd() + : editText.getSelectionStart() - 8); + break; + case R.drawable.ic_insert_link: + LinearLayout dialogBody = + (LinearLayout) + LayoutInflater.from(context).inflate(R.layout.dialog_create_link, null); + TextInputLayout linkUrl = dialogBody.findViewById(R.id.link_url_input); + linkUrl.setOnClickListener(view1 -> linkUrl.setError(null)); + TextInputLayout linkText = dialogBody.findViewById(R.id.link_text_input); + linkText.setOnClickListener(view2 -> linkText.setError(null)); + hadTextSelection = editText.hasSelection(); + int start = editText.getSelectionStart(), end = editText.getSelectionEnd(); + if (editText.hasSelection()) { + linkText + .getEditText() + .setText( + editText + .getText() + .toString() + .substring( + editText.getSelectionStart(), editText.getSelectionEnd())); + } + AlertDialog linkDialog = + new AlertDialog.Builder(context, R.style.AppTheme_Dark_Dialog) + .setTitle(R.string.dialog_create_link_title) + .setView(dialogBody) + .setPositiveButton(R.string.ok, null) + .setNegativeButton(R.string.cancel, (dialog, which) -> dialog.dismiss()) + .create(); + linkDialog.setOnShowListener( + dialogInterface -> { + Button button = linkDialog.getButton(AlertDialog.BUTTON_POSITIVE); + button.setOnClickListener( + view12 -> { + if (TextUtils.isEmpty( + Objects.requireNonNull(linkUrl.getEditText()) + .getText() + .toString())) { + linkUrl.setError(context.getString(R.string.input_field_required)); + return; + } + + if (hadTextSelection) + editText.getText().delete(start, end); + if (!TextUtils.isEmpty(linkText.getEditText().getText())) { + getText() + .insert( + editText.getSelectionStart(), + "[url=" + + linkUrl.getEditText().getText().toString() + + "]" + + linkText.getEditText().getText().toString() + + "[/url]"); + } + else + getText() + .insert( + editText.getSelectionStart(), + "[url]" + + linkUrl.getEditText().getText().toString() + + "[/url]"); + linkDialog.dismiss(); + }); + }); + linkDialog.show(); + break; + case R.drawable.ic_format_quote: + hadTextSelection = editText.hasSelection(); + getText().insert(editText.getSelectionStart(), "[quote]"); + getText().insert(editText.getSelectionEnd(), "[/quote]"); + editText.setSelection( + hadTextSelection + ? editText.getSelectionEnd() + : editText.getSelectionStart() - 8); + break; + case R.drawable.ic_code: + hadTextSelection = editText.hasSelection(); + getText().insert(editText.getSelectionStart(), "[code]"); + getText().insert(editText.getSelectionEnd(), "[/code]"); + editText.setSelection( + hadTextSelection + ? editText.getSelectionEnd() + : editText.getSelectionStart() - 7); + break; + case R.drawable.ic_functions: + hadTextSelection = editText.hasSelection(); + getText().insert(editText.getSelectionStart(), "[tex]"); + getText().insert(editText.getSelectionEnd(), "[/tex]"); + editText.setSelection( + hadTextSelection + ? editText.getSelectionEnd() + : editText.getSelectionStart() - 6); + break; + default: + throw new IllegalArgumentException("Unknown format button click"); + } + })); emojiButton.setOnClickListener(view -> { InputMethodManager imm = (InputMethodManager) context.getSystemService(Activity.INPUT_METHOD_SERVICE); @@ -402,7 +405,8 @@ public class EditorView extends LinearLayout implements EmojiInputField { InputMethodManager imm = (InputMethodManager) getContext().getSystemService(Activity.INPUT_METHOD_SERVICE); if (imm != null) imm.showSoftInput(editText, InputMethodManager.SHOW_IMPLICIT); - } else { + } + else { InputMethodManager imm = (InputMethodManager) getContext().getSystemService(Activity.INPUT_METHOD_SERVICE); if (imm != null) imm.hideSoftInputFromWindow(getWindowToken(), 0); @@ -414,19 +418,20 @@ public class EditorView extends LinearLayout implements EmojiInputField { if (b) { emojiKeyboard.onEmojiInputFieldFocused(EditorView.this); showMarkdown(); - } else hideMarkdown(); + } + else hideMarkdown(); }); editText.setOnFocusChangeListener((view, b) -> { if (b) { emojiKeyboard.onEmojiInputFieldFocused(EditorView.this); showMarkdown(); - } else hideMarkdown(); + } + else hideMarkdown(); }); } /** * Animates the hiding of the markdown options. - * */ public void hideMarkdown() { if (formatButtonsRecyclerview.getVisibility() == GONE) return; @@ -459,7 +464,6 @@ public class EditorView extends LinearLayout implements EmojiInputField { /** * Animates the showing of the markdown options. - * */ public void showMarkdown() { if (formatButtonsRecyclerview.getVisibility() == VISIBLE) return; @@ -523,7 +527,8 @@ public class EditorView extends LinearLayout implements EmojiInputField { public void onKeyboardVisibilityChange(boolean visible) { if (visible) { emojiButton.setImageResource(R.drawable.ic_keyboard_24dp); - } else { + } + else { emojiButton.setImageResource(R.drawable.ic_tag_faces_24dp); } } diff --git a/app/src/main/java/gr/thmmy/mthmmy/views/editorview/EmojiInputField.java b/app/src/main/java/gr/thmmy/mthmmy/views/editorview/EmojiInputField.java index 88d2e790..d91a25b6 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/views/editorview/EmojiInputField.java +++ b/app/src/main/java/gr/thmmy/mthmmy/views/editorview/EmojiInputField.java @@ -4,5 +4,6 @@ import android.view.inputmethod.InputConnection; public interface EmojiInputField { void onKeyboardVisibilityChange(boolean visible); + InputConnection getInputConnection(); } diff --git a/app/src/main/java/gr/thmmy/mthmmy/views/editorview/FormatButtonsAdapter.java b/app/src/main/java/gr/thmmy/mthmmy/views/editorview/FormatButtonsAdapter.java index 699bf760..738d47bd 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/views/editorview/FormatButtonsAdapter.java +++ b/app/src/main/java/gr/thmmy/mthmmy/views/editorview/FormatButtonsAdapter.java @@ -14,10 +14,10 @@ public class FormatButtonsAdapter extends RecyclerView.Adapter + android:toXDelta="0" /> \ No newline at end of file diff --git a/app/src/main/res/anim/push_left_out.xml b/app/src/main/res/anim/push_left_out.xml index 10d90e29..449e950f 100644 --- a/app/src/main/res/anim/push_left_out.xml +++ b/app/src/main/res/anim/push_left_out.xml @@ -3,5 +3,5 @@ + android:toXDelta="-100%p" /> \ No newline at end of file diff --git a/app/src/main/res/anim/push_right_in.xml b/app/src/main/res/anim/push_right_in.xml index 0aee10cc..6b4cdf8d 100644 --- a/app/src/main/res/anim/push_right_in.xml +++ b/app/src/main/res/anim/push_right_in.xml @@ -3,6 +3,6 @@ + android:toXDelta="0" /> \ No newline at end of file diff --git a/app/src/main/res/anim/push_right_out.xml b/app/src/main/res/anim/push_right_out.xml index 0221bc4c..1d45e3b5 100644 --- a/app/src/main/res/anim/push_right_out.xml +++ b/app/src/main/res/anim/push_right_out.xml @@ -3,6 +3,6 @@ + android:toXDelta="100%p" /> \ No newline at end of file diff --git a/app/src/main/res/drawable/guest_button_border_bg.xml b/app/src/main/res/drawable/guest_button_border_bg.xml index 9ec2f3f5..fe71a18b 100644 --- a/app/src/main/res/drawable/guest_button_border_bg.xml +++ b/app/src/main/res/drawable/guest_button_border_bg.xml @@ -1,13 +1,13 @@ - + - + android:color="@color/accent" /> + + android:top="0dip" /> \ No newline at end of file diff --git a/app/src/main/res/drawable/ic_access_time_white_24dp.xml b/app/src/main/res/drawable/ic_access_time_white_24dp.xml index 87e8fdaa..6e8b7022 100644 --- a/app/src/main/res/drawable/ic_access_time_white_24dp.xml +++ b/app/src/main/res/drawable/ic_access_time_white_24dp.xml @@ -1,5 +1,10 @@ - - + + diff --git a/app/src/main/res/drawable/ic_add_fab.xml b/app/src/main/res/drawable/ic_add_fab.xml index 6b6146ec..453942e8 100644 --- a/app/src/main/res/drawable/ic_add_fab.xml +++ b/app/src/main/res/drawable/ic_add_fab.xml @@ -1,9 +1,9 @@ + android:width="24dp" + android:height="24dp" + android:viewportWidth="24.0" + android:viewportHeight="24.0"> + android:pathData="M19,13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z" /> diff --git a/app/src/main/res/drawable/ic_announcement.xml b/app/src/main/res/drawable/ic_announcement.xml index c7878be2..a4de4e73 100644 --- a/app/src/main/res/drawable/ic_announcement.xml +++ b/app/src/main/res/drawable/ic_announcement.xml @@ -1,7 +1,12 @@ - - + android:strokeColor="#000000" + android:strokeWidth="1" /> diff --git a/app/src/main/res/drawable/ic_arrow_drop_down_accent_24dp.xml b/app/src/main/res/drawable/ic_arrow_drop_down_accent_24dp.xml index 0e9dc941..afca43bb 100644 --- a/app/src/main/res/drawable/ic_arrow_drop_down_accent_24dp.xml +++ b/app/src/main/res/drawable/ic_arrow_drop_down_accent_24dp.xml @@ -1,5 +1,10 @@ - - + + diff --git a/app/src/main/res/drawable/ic_arrow_drop_up_accent_24dp.xml b/app/src/main/res/drawable/ic_arrow_drop_up_accent_24dp.xml index 3924bc11..d35b6f3b 100644 --- a/app/src/main/res/drawable/ic_arrow_drop_up_accent_24dp.xml +++ b/app/src/main/res/drawable/ic_arrow_drop_up_accent_24dp.xml @@ -1,5 +1,10 @@ - - + + diff --git a/app/src/main/res/drawable/ic_backspace_black_24dp.xml b/app/src/main/res/drawable/ic_backspace_black_24dp.xml index 5ecf7ae2..bfd8d759 100644 --- a/app/src/main/res/drawable/ic_backspace_black_24dp.xml +++ b/app/src/main/res/drawable/ic_backspace_black_24dp.xml @@ -1,5 +1,10 @@ - - + + diff --git a/app/src/main/res/drawable/ic_bookmark_false_accent_24dp.xml b/app/src/main/res/drawable/ic_bookmark_false_accent_24dp.xml index c5178cf2..9c148ba8 100644 --- a/app/src/main/res/drawable/ic_bookmark_false_accent_24dp.xml +++ b/app/src/main/res/drawable/ic_bookmark_false_accent_24dp.xml @@ -1,5 +1,10 @@ - - + + diff --git a/app/src/main/res/drawable/ic_bookmark_true_accent_24dp.xml b/app/src/main/res/drawable/ic_bookmark_true_accent_24dp.xml index a1a12213..f28ffc65 100644 --- a/app/src/main/res/drawable/ic_bookmark_true_accent_24dp.xml +++ b/app/src/main/res/drawable/ic_bookmark_true_accent_24dp.xml @@ -1,5 +1,10 @@ - - + + diff --git a/app/src/main/res/drawable/ic_cached_accent_24dp.xml b/app/src/main/res/drawable/ic_cached_accent_24dp.xml index b4f3f7dd..2849c439 100644 --- a/app/src/main/res/drawable/ic_cached_accent_24dp.xml +++ b/app/src/main/res/drawable/ic_cached_accent_24dp.xml @@ -1,4 +1,10 @@ - - + + diff --git a/app/src/main/res/drawable/ic_cancel_accent_24dp.xml b/app/src/main/res/drawable/ic_cancel_accent_24dp.xml index 4c1d6837..935d3042 100644 --- a/app/src/main/res/drawable/ic_cancel_accent_24dp.xml +++ b/app/src/main/res/drawable/ic_cancel_accent_24dp.xml @@ -1,4 +1,10 @@ - - + + diff --git a/app/src/main/res/drawable/ic_code.xml b/app/src/main/res/drawable/ic_code.xml index fc50feea..69708b1b 100644 --- a/app/src/main/res/drawable/ic_code.xml +++ b/app/src/main/res/drawable/ic_code.xml @@ -1,5 +1,10 @@ - - + + diff --git a/app/src/main/res/drawable/ic_default_user_avatar.xml b/app/src/main/res/drawable/ic_default_user_avatar.xml index d2f2ecfe..6151173c 100644 --- a/app/src/main/res/drawable/ic_default_user_avatar.xml +++ b/app/src/main/res/drawable/ic_default_user_avatar.xml @@ -1,5 +1,12 @@ - - - + + + diff --git a/app/src/main/res/drawable/ic_default_user_avatar_darker.xml b/app/src/main/res/drawable/ic_default_user_avatar_darker.xml index 44169fa1..d0858288 100644 --- a/app/src/main/res/drawable/ic_default_user_avatar_darker.xml +++ b/app/src/main/res/drawable/ic_default_user_avatar_darker.xml @@ -1,5 +1,12 @@ - - - + + + diff --git a/app/src/main/res/drawable/ic_delete_accent_24dp.xml b/app/src/main/res/drawable/ic_delete_accent_24dp.xml index cda3e2fb..8dd9d008 100644 --- a/app/src/main/res/drawable/ic_delete_accent_24dp.xml +++ b/app/src/main/res/drawable/ic_delete_accent_24dp.xml @@ -1,5 +1,10 @@ - - + + diff --git a/app/src/main/res/drawable/ic_delete_white_24dp.xml b/app/src/main/res/drawable/ic_delete_white_24dp.xml index 8bed121a..ce43ddd4 100644 --- a/app/src/main/res/drawable/ic_delete_white_24dp.xml +++ b/app/src/main/res/drawable/ic_delete_white_24dp.xml @@ -1,5 +1,10 @@ - - + + diff --git a/app/src/main/res/drawable/ic_edit_white_24dp.xml b/app/src/main/res/drawable/ic_edit_white_24dp.xml index 46462b57..133ea446 100644 --- a/app/src/main/res/drawable/ic_edit_white_24dp.xml +++ b/app/src/main/res/drawable/ic_edit_white_24dp.xml @@ -1,5 +1,10 @@ - - + + diff --git a/app/src/main/res/drawable/ic_fiber_new_white_24dp.xml b/app/src/main/res/drawable/ic_fiber_new_white_24dp.xml index be966efc..d2499580 100644 --- a/app/src/main/res/drawable/ic_fiber_new_white_24dp.xml +++ b/app/src/main/res/drawable/ic_fiber_new_white_24dp.xml @@ -1,5 +1,10 @@ - - + + diff --git a/app/src/main/res/drawable/ic_file_not_found.xml b/app/src/main/res/drawable/ic_file_not_found.xml index 78615445..8c31c6ec 100644 --- a/app/src/main/res/drawable/ic_file_not_found.xml +++ b/app/src/main/res/drawable/ic_file_not_found.xml @@ -1,5 +1,10 @@ - - + + diff --git a/app/src/main/res/drawable/ic_file_upload_white_24dp.xml b/app/src/main/res/drawable/ic_file_upload_white_24dp.xml index 70e55133..c5632403 100644 --- a/app/src/main/res/drawable/ic_file_upload_white_24dp.xml +++ b/app/src/main/res/drawable/ic_file_upload_white_24dp.xml @@ -1,5 +1,10 @@ - - + + diff --git a/app/src/main/res/drawable/ic_format_align_center.xml b/app/src/main/res/drawable/ic_format_align_center.xml index 3970a13c..ca1dfac5 100644 --- a/app/src/main/res/drawable/ic_format_align_center.xml +++ b/app/src/main/res/drawable/ic_format_align_center.xml @@ -1,5 +1,10 @@ - - + + diff --git a/app/src/main/res/drawable/ic_format_align_left.xml b/app/src/main/res/drawable/ic_format_align_left.xml index 27759704..a100a951 100644 --- a/app/src/main/res/drawable/ic_format_align_left.xml +++ b/app/src/main/res/drawable/ic_format_align_left.xml @@ -1,5 +1,10 @@ - - + + diff --git a/app/src/main/res/drawable/ic_format_align_right.xml b/app/src/main/res/drawable/ic_format_align_right.xml index 94f1f326..594a96ca 100644 --- a/app/src/main/res/drawable/ic_format_align_right.xml +++ b/app/src/main/res/drawable/ic_format_align_right.xml @@ -1,5 +1,10 @@ - - + + diff --git a/app/src/main/res/drawable/ic_format_bold.xml b/app/src/main/res/drawable/ic_format_bold.xml index 612b8927..7c9d6c17 100644 --- a/app/src/main/res/drawable/ic_format_bold.xml +++ b/app/src/main/res/drawable/ic_format_bold.xml @@ -1,9 +1,9 @@ + android:width="@dimen/editor_format_button_size" + android:height="@dimen/editor_format_button_size" + android:viewportWidth="24.0" + android:viewportHeight="24.0"> + android:pathData="M15.6,10.79c0.97,-0.67 1.65,-1.77 1.65,-2.79 0,-2.26 -1.75,-4 -4,-4L7,4v14h7.04c2.09,0 3.71,-1.7 3.71,-3.79 0,-1.52 -0.86,-2.82 -2.15,-3.42zM10,6.5h3c0.83,0 1.5,0.67 1.5,1.5s-0.67,1.5 -1.5,1.5h-3v-3zM13.5,15.5L10,15.5v-3h3.5c0.83,0 1.5,0.67 1.5,1.5s-0.67,1.5 -1.5,1.5z" /> diff --git a/app/src/main/res/drawable/ic_format_color_text.xml b/app/src/main/res/drawable/ic_format_color_text.xml index 9e8b6a46..5e24a272 100644 --- a/app/src/main/res/drawable/ic_format_color_text.xml +++ b/app/src/main/res/drawable/ic_format_color_text.xml @@ -1,6 +1,13 @@ - - + android:viewportHeight="24.0" + android:viewportWidth="24.0" + android:width="@dimen/editor_format_button_size" + xmlns:android="http://schemas.android.com/apk/res/android"> + + diff --git a/app/src/main/res/drawable/ic_format_italic.xml b/app/src/main/res/drawable/ic_format_italic.xml index 92b9cc5a..15ecbd1f 100644 --- a/app/src/main/res/drawable/ic_format_italic.xml +++ b/app/src/main/res/drawable/ic_format_italic.xml @@ -1,4 +1,9 @@ - - + + diff --git a/app/src/main/res/drawable/ic_format_list_bulleted.xml b/app/src/main/res/drawable/ic_format_list_bulleted.xml index 90969e5c..694c1823 100644 --- a/app/src/main/res/drawable/ic_format_list_bulleted.xml +++ b/app/src/main/res/drawable/ic_format_list_bulleted.xml @@ -1,5 +1,10 @@ - - + + diff --git a/app/src/main/res/drawable/ic_format_quote.xml b/app/src/main/res/drawable/ic_format_quote.xml index 92e96f25..6a191590 100644 --- a/app/src/main/res/drawable/ic_format_quote.xml +++ b/app/src/main/res/drawable/ic_format_quote.xml @@ -1,5 +1,10 @@ - - + + diff --git a/app/src/main/res/drawable/ic_format_quote_checked_accent_24dp.xml b/app/src/main/res/drawable/ic_format_quote_checked_accent_24dp.xml index 1207e178..b116f32e 100644 --- a/app/src/main/res/drawable/ic_format_quote_checked_accent_24dp.xml +++ b/app/src/main/res/drawable/ic_format_quote_checked_accent_24dp.xml @@ -1,5 +1,10 @@ - - + + diff --git a/app/src/main/res/drawable/ic_format_quote_unchecked_24dp.xml b/app/src/main/res/drawable/ic_format_quote_unchecked_24dp.xml index 1b05e2a7..1c992dce 100644 --- a/app/src/main/res/drawable/ic_format_quote_unchecked_24dp.xml +++ b/app/src/main/res/drawable/ic_format_quote_unchecked_24dp.xml @@ -1,5 +1,10 @@ - - + + diff --git a/app/src/main/res/drawable/ic_format_size.xml b/app/src/main/res/drawable/ic_format_size.xml index 7b5d129a..79aea27b 100644 --- a/app/src/main/res/drawable/ic_format_size.xml +++ b/app/src/main/res/drawable/ic_format_size.xml @@ -1,5 +1,10 @@ - - + + diff --git a/app/src/main/res/drawable/ic_format_underlined.xml b/app/src/main/res/drawable/ic_format_underlined.xml index 738d6cb8..bb61cfd0 100644 --- a/app/src/main/res/drawable/ic_format_underlined.xml +++ b/app/src/main/res/drawable/ic_format_underlined.xml @@ -1,5 +1,10 @@ - - + + diff --git a/app/src/main/res/drawable/ic_forum_white_24dp.xml b/app/src/main/res/drawable/ic_forum_white_24dp.xml index 55b04ab1..bb18f551 100644 --- a/app/src/main/res/drawable/ic_forum_white_24dp.xml +++ b/app/src/main/res/drawable/ic_forum_white_24dp.xml @@ -1,5 +1,10 @@ - - + + diff --git a/app/src/main/res/drawable/ic_functions.xml b/app/src/main/res/drawable/ic_functions.xml index 834d56e1..5b27356d 100644 --- a/app/src/main/res/drawable/ic_functions.xml +++ b/app/src/main/res/drawable/ic_functions.xml @@ -1,5 +1,10 @@ - - + + diff --git a/app/src/main/res/drawable/ic_info_outline_warning_24dp.xml b/app/src/main/res/drawable/ic_info_outline_warning_24dp.xml index 1c3b206c..d227e334 100644 --- a/app/src/main/res/drawable/ic_info_outline_warning_24dp.xml +++ b/app/src/main/res/drawable/ic_info_outline_warning_24dp.xml @@ -1,4 +1,10 @@ - - + + diff --git a/app/src/main/res/drawable/ic_info_outline_white_24dp.xml b/app/src/main/res/drawable/ic_info_outline_white_24dp.xml index af0d4d06..bb9b17ac 100644 --- a/app/src/main/res/drawable/ic_info_outline_white_24dp.xml +++ b/app/src/main/res/drawable/ic_info_outline_white_24dp.xml @@ -1,5 +1,10 @@ - - + + diff --git a/app/src/main/res/drawable/ic_insert_drive_file_white_24dp.xml b/app/src/main/res/drawable/ic_insert_drive_file_white_24dp.xml index a431a5e9..cebbcf7f 100644 --- a/app/src/main/res/drawable/ic_insert_drive_file_white_24dp.xml +++ b/app/src/main/res/drawable/ic_insert_drive_file_white_24dp.xml @@ -1,5 +1,10 @@ - - + + diff --git a/app/src/main/res/drawable/ic_insert_link.xml b/app/src/main/res/drawable/ic_insert_link.xml index 199089f0..79c15ae5 100644 --- a/app/src/main/res/drawable/ic_insert_link.xml +++ b/app/src/main/res/drawable/ic_insert_link.xml @@ -1,5 +1,10 @@ - - + + diff --git a/app/src/main/res/drawable/ic_keyboard_24dp.xml b/app/src/main/res/drawable/ic_keyboard_24dp.xml index e050ce50..ea14cc05 100644 --- a/app/src/main/res/drawable/ic_keyboard_24dp.xml +++ b/app/src/main/res/drawable/ic_keyboard_24dp.xml @@ -1,5 +1,10 @@ - - + + diff --git a/app/src/main/res/drawable/ic_launcher_foreground.xml b/app/src/main/res/drawable/ic_launcher_foreground.xml index e0e104b6..1740637c 100644 --- a/app/src/main/res/drawable/ic_launcher_foreground.xml +++ b/app/src/main/res/drawable/ic_launcher_foreground.xml @@ -3,19 +3,19 @@ android:height="108dp" android:viewportWidth="1039.6812" android:viewportHeight="1039.6812"> - - - - - + + + + + + - diff --git a/app/src/main/res/drawable/ic_mark_as_read.xml b/app/src/main/res/drawable/ic_mark_as_read.xml index 04b4b785..b07dfe17 100644 --- a/app/src/main/res/drawable/ic_mark_as_read.xml +++ b/app/src/main/res/drawable/ic_mark_as_read.xml @@ -1,5 +1,10 @@ - - + + diff --git a/app/src/main/res/drawable/ic_more_vert_white_24dp.xml b/app/src/main/res/drawable/ic_more_vert_white_24dp.xml index c097d3e4..3983cd40 100644 --- a/app/src/main/res/drawable/ic_more_vert_white_24dp.xml +++ b/app/src/main/res/drawable/ic_more_vert_white_24dp.xml @@ -1,5 +1,10 @@ - - + + diff --git a/app/src/main/res/drawable/ic_notification_off.xml b/app/src/main/res/drawable/ic_notification_off.xml index 7588f1e2..336141ef 100644 --- a/app/src/main/res/drawable/ic_notification_off.xml +++ b/app/src/main/res/drawable/ic_notification_off.xml @@ -1,9 +1,9 @@ + android:width="24dp" + android:height="24dp" + android:viewportWidth="24.0" + android:viewportHeight="24.0"> + android:pathData="M12,22c1.1,0 2,-0.9 2,-2h-4c0,1.1 0.9,2 2,2zM18,16v-5c0,-3.07 -1.63,-5.64 -4.5,-6.32L13.5,4c0,-0.83 -0.67,-1.5 -1.5,-1.5s-1.5,0.67 -1.5,1.5v0.68C7.64,5.36 6,7.92 6,11v5l-2,2v1h16v-1l-2,-2zM16,17L8,17v-6c0,-2.48 1.51,-4.5 4,-4.5s4,2.02 4,4.5v6z" /> diff --git a/app/src/main/res/drawable/ic_notification_on.xml b/app/src/main/res/drawable/ic_notification_on.xml index 948bbac1..a4cc9c51 100644 --- a/app/src/main/res/drawable/ic_notification_on.xml +++ b/app/src/main/res/drawable/ic_notification_on.xml @@ -1,5 +1,9 @@ - + android:viewportHeight="24.0" + android:viewportWidth="24.0" + android:width="24dp" + xmlns:android="http://schemas.android.com/apk/res/android"> + diff --git a/app/src/main/res/drawable/ic_photo_camera_white_24dp.xml b/app/src/main/res/drawable/ic_photo_camera_white_24dp.xml index 9835771a..fdd1a74f 100644 --- a/app/src/main/res/drawable/ic_photo_camera_white_24dp.xml +++ b/app/src/main/res/drawable/ic_photo_camera_white_24dp.xml @@ -1,5 +1,13 @@ - - - + + + diff --git a/app/src/main/res/drawable/ic_pm_fab.xml b/app/src/main/res/drawable/ic_pm_fab.xml index efa4deda..434180bd 100644 --- a/app/src/main/res/drawable/ic_pm_fab.xml +++ b/app/src/main/res/drawable/ic_pm_fab.xml @@ -1,9 +1,9 @@ + android:width="24dp" + android:height="24dp" + android:viewportWidth="24.0" + android:viewportHeight="24.0"> + android:pathData="M21.99,4c0,-1.1 -0.89,-2 -1.99,-2L4,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h14l4,4 -0.01,-18zM18,14L6,14v-2h12v2zM18,11L6,11L6,9h12v2zM18,8L6,8L6,6h12v2z" /> diff --git a/app/src/main/res/drawable/ic_refresh_white_24dp.xml b/app/src/main/res/drawable/ic_refresh_white_24dp.xml index cc2d1e04..a27ba3c8 100644 --- a/app/src/main/res/drawable/ic_refresh_white_24dp.xml +++ b/app/src/main/res/drawable/ic_refresh_white_24dp.xml @@ -1,5 +1,10 @@ - - + + diff --git a/app/src/main/res/drawable/ic_reply.xml b/app/src/main/res/drawable/ic_reply.xml index 1fc7f4f1..870be871 100644 --- a/app/src/main/res/drawable/ic_reply.xml +++ b/app/src/main/res/drawable/ic_reply.xml @@ -1,9 +1,9 @@ + android:width="24dp" + android:height="24dp" + android:viewportWidth="24.0" + android:viewportHeight="24.0"> + android:pathData="M10,9V5l-7,7 7,7v-4.1c5,0 8.5,1.6 11,5.1 -1,-5 -4,-10 -11,-11z" /> diff --git a/app/src/main/res/drawable/ic_send_accent_24dp.xml b/app/src/main/res/drawable/ic_send_accent_24dp.xml index 4d65d14e..23165ce1 100644 --- a/app/src/main/res/drawable/ic_send_accent_24dp.xml +++ b/app/src/main/res/drawable/ic_send_accent_24dp.xml @@ -1,5 +1,10 @@ - - + + diff --git a/app/src/main/res/drawable/ic_share_white_24dp.xml b/app/src/main/res/drawable/ic_share_white_24dp.xml index 045bbc0c..13d1a2e0 100644 --- a/app/src/main/res/drawable/ic_share_white_24dp.xml +++ b/app/src/main/res/drawable/ic_share_white_24dp.xml @@ -1,5 +1,10 @@ - - + + diff --git a/app/src/main/res/drawable/ic_strikethrough_s.xml b/app/src/main/res/drawable/ic_strikethrough_s.xml index cb93bbc1..19904126 100644 --- a/app/src/main/res/drawable/ic_strikethrough_s.xml +++ b/app/src/main/res/drawable/ic_strikethrough_s.xml @@ -1,5 +1,10 @@ - - + + diff --git a/app/src/main/res/drawable/ic_tag_faces_24dp.xml b/app/src/main/res/drawable/ic_tag_faces_24dp.xml index 8deae1ed..e921bca7 100644 --- a/app/src/main/res/drawable/ic_tag_faces_24dp.xml +++ b/app/src/main/res/drawable/ic_tag_faces_24dp.xml @@ -1,5 +1,10 @@ - - + + diff --git a/app/src/main/res/drawable/ic_text_format.xml b/app/src/main/res/drawable/ic_text_format.xml index 529a6fdb..53fbb2f4 100644 --- a/app/src/main/res/drawable/ic_text_format.xml +++ b/app/src/main/res/drawable/ic_text_format.xml @@ -1,5 +1,10 @@ - - + + diff --git a/app/src/main/res/drawable/line_chart_gradient.xml b/app/src/main/res/drawable/line_chart_gradient.xml index 37f994c0..83725071 100644 --- a/app/src/main/res/drawable/line_chart_gradient.xml +++ b/app/src/main/res/drawable/line_chart_gradient.xml @@ -1,10 +1,9 @@ - + android:type="linear" /> \ No newline at end of file diff --git a/app/src/main/res/drawable/login_button_bg.xml b/app/src/main/res/drawable/login_button_bg.xml index 502e6a5f..97f0e1fc 100644 --- a/app/src/main/res/drawable/login_button_bg.xml +++ b/app/src/main/res/drawable/login_button_bg.xml @@ -1,10 +1,10 @@ - - + + + android:top="0dip" /> \ No newline at end of file diff --git a/app/src/main/res/drawable/member_of_the_month_card.xml b/app/src/main/res/drawable/member_of_the_month_card.xml index fe5d8369..104e2237 100644 --- a/app/src/main/res/drawable/member_of_the_month_card.xml +++ b/app/src/main/res/drawable/member_of_the_month_card.xml @@ -1,13 +1,13 @@ - + - + android:color="@color/member_of_the_month" /> + + android:top="0dip" /> \ No newline at end of file diff --git a/app/src/main/res/drawable/mention_card.xml b/app/src/main/res/drawable/mention_card.xml index b983dca6..96488051 100644 --- a/app/src/main/res/drawable/mention_card.xml +++ b/app/src/main/res/drawable/mention_card.xml @@ -1,13 +1,13 @@ - + - + android:color="@color/mention_color" /> + + android:top="0dip" /> \ No newline at end of file diff --git a/app/src/main/res/drawable/page_first.xml b/app/src/main/res/drawable/page_first.xml index 0ef9896d..54a2ff0f 100644 --- a/app/src/main/res/drawable/page_first.xml +++ b/app/src/main/res/drawable/page_first.xml @@ -1,8 +1,10 @@ - + android:width="24dp" + android:height="24dp" + android:viewportHeight="24" + android:viewportWidth="24"> + \ No newline at end of file diff --git a/app/src/main/res/drawable/page_last.xml b/app/src/main/res/drawable/page_last.xml index 45ecd640..a944b3a1 100644 --- a/app/src/main/res/drawable/page_last.xml +++ b/app/src/main/res/drawable/page_last.xml @@ -1,8 +1,10 @@ - + android:width="24dp" + android:height="24dp" + android:viewportHeight="24" + android:viewportWidth="24"> + \ No newline at end of file diff --git a/app/src/main/res/drawable/page_next.xml b/app/src/main/res/drawable/page_next.xml index 3267024e..cff70d96 100644 --- a/app/src/main/res/drawable/page_next.xml +++ b/app/src/main/res/drawable/page_next.xml @@ -1,8 +1,10 @@ - + android:width="24dp" + android:height="24dp" + android:viewportHeight="24" + android:viewportWidth="24"> + \ No newline at end of file diff --git a/app/src/main/res/drawable/page_previous.xml b/app/src/main/res/drawable/page_previous.xml index 7f6bcf36..88a3362b 100644 --- a/app/src/main/res/drawable/page_previous.xml +++ b/app/src/main/res/drawable/page_previous.xml @@ -1,8 +1,10 @@ - + android:width="24dp" + android:height="24dp" + android:viewportHeight="24" + android:viewportWidth="24"> + \ No newline at end of file diff --git a/app/src/main/res/drawable/progress_bar_bg.xml b/app/src/main/res/drawable/progress_bar_bg.xml index c71887d6..bce1b0e5 100644 --- a/app/src/main/res/drawable/progress_bar_bg.xml +++ b/app/src/main/res/drawable/progress_bar_bg.xml @@ -1,9 +1,9 @@ + android:fromDegrees="0" + android:pivotX="50%" + android:pivotY="50%" + android:toDegrees="360"> + android:height="76dip" /> + android:useLevel="false" /> \ No newline at end of file diff --git a/app/src/main/res/layout-v21/activity_profile.xml b/app/src/main/res/layout-v21/activity_profile.xml index 34064eaf..f7998829 100644 --- a/app/src/main/res/layout-v21/activity_profile.xml +++ b/app/src/main/res/layout-v21/activity_profile.xml @@ -1,6 +1,5 @@ - + app:layout_collapseMode="parallax" /> + android:visibility="gone" /> @@ -76,7 +75,7 @@ android:paddingBottom="2dp" android:text="@string/username" android:textColor="@color/accent" - android:textSize="25sp"/> + android:textSize="25sp" /> + app:tabTextColor="@color/white" /> + app:layout_behavior="@string/appbar_scrolling_view_behavior" /> + app:mpb_progressStyle="horizontal" /> + app:srcCompat="@drawable/ic_pm_fab" /> diff --git a/app/src/main/res/layout-v21/activity_topic_post_row.xml b/app/src/main/res/layout-v21/activity_topic_post_row.xml index 01d3fb6d..b795224e 100644 --- a/app/src/main/res/layout-v21/activity_topic_post_row.xml +++ b/app/src/main/res/layout-v21/activity_topic_post_row.xml @@ -84,6 +84,7 @@ android:maxLines="1" android:text="@string/post_subject" /> + + android:textStyle="bold" /> + app:srcCompat="@drawable/ic_arrow_drop_down_accent_24dp" /> + app:srcCompat="@drawable/ic_arrow_drop_down_accent_24dp" /> - - + app:popupTheme="@style/ToolbarTheme"> + app:tabTextColor="@color/white" /> + app:layout_behavior="@string/appbar_scrolling_view_behavior" /> + app:mpb_progressStyle="horizontal" /> \ No newline at end of file diff --git a/app/src/main/res/layout/activity_create_content.xml b/app/src/main/res/layout/activity_create_content.xml index 279eb871..bff765b8 100644 --- a/app/src/main/res/layout/activity_create_content.xml +++ b/app/src/main/res/layout/activity_create_content.xml @@ -1,6 +1,5 @@ - - + app:popupTheme="@style/ToolbarTheme"> + android:inputType="text" /> + app:hint="@string/message" /> - - + app:popupTheme="@style/ToolbarTheme"> - + tools:context="gr.thmmy.mthmmy.activities.downloads.DownloadsActivity"> + app:mpb_progressStyle="horizontal" /> + app:srcCompat="@drawable/ic_file_upload_white_24dp" /> diff --git a/app/src/main/res/layout/activity_downloads_row.xml b/app/src/main/res/layout/activity_downloads_row.xml index f5a3318a..b6ffd79e 100644 --- a/app/src/main/res/layout/activity_downloads_row.xml +++ b/app/src/main/res/layout/activity_downloads_row.xml @@ -1,6 +1,5 @@ - + android:textSize="18sp" /> + app:srcCompat="@drawable/ic_arrow_drop_down_accent_24dp" /> + android:textColor="@color/secondary_text" /> + android:textColor="@color/secondary_text" /> + android:textColor="@color/secondary_text" /> \ No newline at end of file diff --git a/app/src/main/res/layout/activity_login.xml b/app/src/main/res/layout/activity_login.xml index fa8cd0f7..29c0bb21 100644 --- a/app/src/main/res/layout/activity_login.xml +++ b/app/src/main/res/layout/activity_login.xml @@ -1,10 +1,10 @@ + xmlns:app="http://schemas.android.com/apk/res-auto" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:background="@color/background" + android:fitsSystemWindows="true"> + android:layout_weight="0.45" /> + android:contentDescription="@string/thmmy_img_description" /> + android:layout_weight="0.35" /> + android:layout_weight="0.16" /> + android:layout_weight="0.5" /> + android:textSize="18sp" /> + android:layout_weight="0.2" /> + android:textSize="15sp" /> + android:layout_weight="0.3" /> @@ -123,7 +122,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center" - android:background="@drawable/progress_bar_bg"/> + android:background="@drawable/progress_bar_bg" /> + android:textStyle="bold" /> \ No newline at end of file diff --git a/app/src/main/res/layout/activity_main.xml b/app/src/main/res/layout/activity_main.xml index 22c1bcbf..79069193 100644 --- a/app/src/main/res/layout/activity_main.xml +++ b/app/src/main/res/layout/activity_main.xml @@ -1,6 +1,5 @@ - + + app:popupTheme="@style/ToolbarTheme" /> - + app:layout_collapseMode="parallax" /> + android:visibility="gone" /> @@ -75,7 +74,7 @@ android:paddingBottom="2dp" android:text="@string/username" android:textColor="@color/accent" - android:textSize="25sp"/> + android:textSize="25sp" /> + app:tabTextColor="@color/white" /> + app:layout_behavior="@string/appbar_scrolling_view_behavior" /> + app:mpb_progressStyle="horizontal" /> + app:srcCompat="@drawable/ic_pm_fab" /> diff --git a/app/src/main/res/layout/activity_topic_edit_row.xml b/app/src/main/res/layout/activity_topic_edit_row.xml index c88eefd1..8621c1bc 100644 --- a/app/src/main/res/layout/activity_topic_edit_row.xml +++ b/app/src/main/res/layout/activity_topic_edit_row.xml @@ -76,6 +76,7 @@ android:textSize="10sp" tools:ignore="SmallSp" /> + - + android:visibility="gone" /> + android:visibility="gone" /> + android:layout_weight="1" /> + android:layout_marginEnd="16dp" /> + android:visibility="gone" /> \ No newline at end of file diff --git a/app/src/main/res/layout/activity_topic_post_row.xml b/app/src/main/res/layout/activity_topic_post_row.xml index ee728e71..2a679c25 100644 --- a/app/src/main/res/layout/activity_topic_post_row.xml +++ b/app/src/main/res/layout/activity_topic_post_row.xml @@ -83,6 +83,7 @@ android:maxLines="1" android:text="@string/post_subject" /> + + tools:text="date" /> + - @@ -10,6 +9,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:hint="@string/dialog_link_url_hint"> + @@ -20,6 +20,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:hint="@string/dialog_link_text_hint"> + diff --git a/app/src/main/res/layout/dialog_licenses.xml b/app/src/main/res/layout/dialog_licenses.xml index c18c4c98..41c62010 100644 --- a/app/src/main/res/layout/dialog_licenses.xml +++ b/app/src/main/res/layout/dialog_licenses.xml @@ -1,6 +1,4 @@ - \ No newline at end of file + android:layout_height="match_parent" /> \ No newline at end of file diff --git a/app/src/main/res/layout/dialog_topic_info.xml b/app/src/main/res/layout/dialog_topic_info.xml index 047c0a23..0db93921 100644 --- a/app/src/main/res/layout/dialog_topic_info.xml +++ b/app/src/main/res/layout/dialog_topic_info.xml @@ -1,10 +1,10 @@ + android:layout_width="match_parent" + android:layout_height="match_parent" + android:orientation="vertical" + android:paddingEnd="24dp" + android:paddingStart="24dp"> + android:textSize="20sp" /> + android:textColorLink="@color/link_color" /> + android:textColorLink="@color/link_color" /> \ No newline at end of file diff --git a/app/src/main/res/layout/editor_view.xml b/app/src/main/res/layout/editor_view.xml index 3f47e85a..ec29d9d0 100644 --- a/app/src/main/res/layout/editor_view.xml +++ b/app/src/main/res/layout/editor_view.xml @@ -7,7 +7,7 @@ + android:layout_height="wrap_content" /> + android:background="?android:selectableItemBackground" /> + android:background="?android:selectableItemBackground" /> \ No newline at end of file diff --git a/app/src/main/res/layout/emoji_keyboard.xml b/app/src/main/res/layout/emoji_keyboard.xml index 16f0abe6..ca0f9ad2 100644 --- a/app/src/main/res/layout/emoji_keyboard.xml +++ b/app/src/main/res/layout/emoji_keyboard.xml @@ -23,5 +23,5 @@ android:id="@+id/emoji_recyclerview" android:scrollbars="vertical" android:layout_width="match_parent" - android:layout_height="240dp"/> + android:layout_height="240dp" /> \ No newline at end of file diff --git a/app/src/main/res/layout/emoji_keyboard_grid_cell.xml b/app/src/main/res/layout/emoji_keyboard_grid_cell.xml index 11244ccf..94ef3244 100644 --- a/app/src/main/res/layout/emoji_keyboard_grid_cell.xml +++ b/app/src/main/res/layout/emoji_keyboard_grid_cell.xml @@ -1,6 +1,5 @@ - \ No newline at end of file + android:padding="10dp" /> \ No newline at end of file diff --git a/app/src/main/res/layout/format_button_grid_cell.xml b/app/src/main/res/layout/format_button_grid_cell.xml index ed19c348..d82aab6b 100644 --- a/app/src/main/res/layout/format_button_grid_cell.xml +++ b/app/src/main/res/layout/format_button_grid_cell.xml @@ -1,6 +1,5 @@ - - + android:layout_width="match_parent" + android:layout_height="match_parent"> + android:dividerPadding="16dp" /> + + android:textSize="@dimen/medium_text" /> \ No newline at end of file diff --git a/app/src/main/res/layout/fragment_bookmarks_row.xml b/app/src/main/res/layout/fragment_bookmarks_row.xml index b3e17ebe..eafe5ef1 100644 --- a/app/src/main/res/layout/fragment_bookmarks_row.xml +++ b/app/src/main/res/layout/fragment_bookmarks_row.xml @@ -1,6 +1,5 @@ - + android:textSize="18sp" /> + app:srcCompat="@drawable/ic_notification_on" /> + app:srcCompat="@drawable/ic_delete_accent_24dp" /> \ No newline at end of file diff --git a/app/src/main/res/layout/fragment_forum.xml b/app/src/main/res/layout/fragment_forum.xml index a428557b..8b65bca9 100644 --- a/app/src/main/res/layout/fragment_forum.xml +++ b/app/src/main/res/layout/fragment_forum.xml @@ -1,6 +1,5 @@ - + app:mpb_progressStyle="horizontal" /> \ No newline at end of file diff --git a/app/src/main/res/layout/fragment_forum_category_row.xml b/app/src/main/res/layout/fragment_forum_category_row.xml index 4bfa1aa4..fc31ee71 100644 --- a/app/src/main/res/layout/fragment_forum_category_row.xml +++ b/app/src/main/res/layout/fragment_forum_category_row.xml @@ -14,6 +14,6 @@ android:textSize="20sp" android:background="?attr/selectableItemBackground" android:gravity="center_horizontal" - android:padding="8dp"/> + android:padding="8dp" /> \ No newline at end of file diff --git a/app/src/main/res/layout/fragment_profile_latest_posts.xml b/app/src/main/res/layout/fragment_profile_latest_posts.xml index 6827530d..cc52c549 100644 --- a/app/src/main/res/layout/fragment_profile_latest_posts.xml +++ b/app/src/main/res/layout/fragment_profile_latest_posts.xml @@ -1,6 +1,5 @@ - @@ -10,7 +9,6 @@ android:layout_width="match_parent" android:layout_height="match_parent" android:padding="4dp" - android:clipToPadding = "false" - android:scrollbars="none"> - + android:clipToPadding="false" + android:scrollbars="none"> \ No newline at end of file diff --git a/app/src/main/res/layout/fragment_profile_latest_posts_empty_message.xml b/app/src/main/res/layout/fragment_profile_latest_posts_empty_message.xml index 54dd346b..83dad016 100644 --- a/app/src/main/res/layout/fragment_profile_latest_posts_empty_message.xml +++ b/app/src/main/res/layout/fragment_profile_latest_posts_empty_message.xml @@ -1,6 +1,7 @@ + android:text="@string/latest_posts_empty_message" /> \ No newline at end of file diff --git a/app/src/main/res/layout/fragment_profile_latest_posts_row.xml b/app/src/main/res/layout/fragment_profile_latest_posts_row.xml index 6c1a8d25..a762edb1 100644 --- a/app/src/main/res/layout/fragment_profile_latest_posts_row.xml +++ b/app/src/main/res/layout/fragment_profile_latest_posts_row.xml @@ -1,13 +1,11 @@ - - + android:textColor="@color/primary_text" /> + android:textColor="@color/secondary_text" /> + android:background="@color/secondary_text" /> + android:text="@string/post" /> diff --git a/app/src/main/res/layout/fragment_profile_stats.xml b/app/src/main/res/layout/fragment_profile_stats.xml index 745ef986..86fd8443 100644 --- a/app/src/main/res/layout/fragment_profile_stats.xml +++ b/app/src/main/res/layout/fragment_profile_stats.xml @@ -1,6 +1,5 @@ - @@ -28,13 +27,13 @@ android:text="@string/general_statistics_title" android:textAlignment="center" android:textColor="@color/accent" - android:textStyle="bold"/> + android:textStyle="bold" /> + android:textColor="@color/primary_text" /> + android:textStyle="bold" /> + android:layout_marginBottom="4dp" /> + android:textStyle="bold" /> + android:layout_marginBottom="4dp" /> + android:textStyle="bold" /> + android:layout_marginBottom="14dp" /> \ No newline at end of file diff --git a/app/src/main/res/layout/fragment_profile_summary.xml b/app/src/main/res/layout/fragment_profile_summary.xml index 65cdf1a8..b15e3249 100644 --- a/app/src/main/res/layout/fragment_profile_summary.xml +++ b/app/src/main/res/layout/fragment_profile_summary.xml @@ -1,6 +1,5 @@ - - + android:orientation="vertical"> \ No newline at end of file diff --git a/app/src/main/res/layout/fragment_recent.xml b/app/src/main/res/layout/fragment_recent.xml index 33c293d1..421b6fd9 100644 --- a/app/src/main/res/layout/fragment_recent.xml +++ b/app/src/main/res/layout/fragment_recent.xml @@ -1,6 +1,5 @@ - + tools:listitem="@layout/fragment_recent_row" /> + app:mpb_progressStyle="horizontal" /> \ No newline at end of file diff --git a/app/src/main/res/layout/fragment_recent_row.xml b/app/src/main/res/layout/fragment_recent_row.xml index e92ac572..62393f51 100644 --- a/app/src/main/res/layout/fragment_recent_row.xml +++ b/app/src/main/res/layout/fragment_recent_row.xml @@ -1,6 +1,5 @@ - @@ -22,7 +21,7 @@ android:layout_alignParentStart="true" android:layout_alignParentTop="true" android:textAppearance="?attr/textAppearanceListItem" - android:textColor="@color/primary_text"/> + android:textColor="@color/primary_text" /> + android:layout_toEndOf="@+id/dateTime" /> + android:textColor="@color/accent" /> + android:textStyle="italic" /> \ No newline at end of file diff --git a/app/src/main/res/layout/fragment_shoutbox.xml b/app/src/main/res/layout/fragment_shoutbox.xml index a3982068..24dad7f9 100644 --- a/app/src/main/res/layout/fragment_shoutbox.xml +++ b/app/src/main/res/layout/fragment_shoutbox.xml @@ -31,7 +31,7 @@ android:layout_marginStart="8dp" android:layout_marginEnd="8dp" android:layout_marginBottom="8dp" - android:visibility="gone"/> + android:visibility="gone" /> + app:mpb_progressStyle="horizontal" /> - @@ -22,7 +21,7 @@ android:layout_alignParentStart="true" android:layout_alignParentTop="true" android:textAppearance="?attr/textAppearanceListItem" - android:textColor="@color/primary_text"/> + android:textColor="@color/primary_text" /> + android:layout_toEndOf="@+id/dateTime" /> + android:textColor="@color/accent" /> + android:textStyle="italic" /> \ No newline at end of file diff --git a/app/src/main/res/layout/recycler_loading_item.xml b/app/src/main/res/layout/recycler_loading_item.xml index cddf98b2..fe4642ec 100644 --- a/app/src/main/res/layout/recycler_loading_item.xml +++ b/app/src/main/res/layout/recycler_loading_item.xml @@ -1,6 +1,5 @@ - + app:mpb_indeterminateTint="@color/accent" /> \ No newline at end of file diff --git a/app/src/main/res/menu/downloads_menu.xml b/app/src/main/res/menu/downloads_menu.xml index 4cee5c91..04eb3822 100644 --- a/app/src/main/res/menu/downloads_menu.xml +++ b/app/src/main/res/menu/downloads_menu.xml @@ -5,6 +5,5 @@ android:id="@+id/menu_upload" android:icon="@drawable/ic_file_upload_white_24dp" app:showAsAction="ifRoom" - android:title="@string/upload_button"> - + android:title="@string/upload_button"> \ No newline at end of file diff --git a/app/src/main/res/menu/shoutbox_menu.xml b/app/src/main/res/menu/shoutbox_menu.xml index 8f3a16ca..dc5c6ab0 100644 --- a/app/src/main/res/menu/shoutbox_menu.xml +++ b/app/src/main/res/menu/shoutbox_menu.xml @@ -5,6 +5,5 @@ android:id="@+id/menu_refresh" android:icon="@drawable/ic_refresh_white_24dp" app:showAsAction="ifRoom" - android:title="@string/refresh"> - + android:title="@string/refresh"> \ No newline at end of file diff --git a/app/src/main/res/menu/topic_menu.xml b/app/src/main/res/menu/topic_menu.xml index cd10259d..42a144ef 100644 --- a/app/src/main/res/menu/topic_menu.xml +++ b/app/src/main/res/menu/topic_menu.xml @@ -1,22 +1,19 @@

+ xmlns:app="http://schemas.android.com/apk/res-auto"> - + android:title="@string/bookmark"> - + android:title="@string/share"> - + android:title="@string/info"> \ No newline at end of file diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml index 7353dbd1..ac94b34f 100644 --- a/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml +++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml @@ -1,5 +1,5 @@ - - + + \ No newline at end of file diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml index 7353dbd1..ac94b34f 100644 --- a/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml +++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -1,5 +1,5 @@ - - + + \ No newline at end of file diff --git a/app/src/main/res/values-v21/styles.xml b/app/src/main/res/values-v21/styles.xml index 7011b5f0..0342a05d 100644 --- a/app/src/main/res/values-v21/styles.xml +++ b/app/src/main/res/values-v21/styles.xml @@ -1,4 +1,5 @@ + diff --git a/app/src/main/res/values/attrs.xml b/app/src/main/res/values/attrs.xml index df265dbe..08002f08 100644 --- a/app/src/main/res/values/attrs.xml +++ b/app/src/main/res/values/attrs.xml @@ -1,6 +1,6 @@ - + diff --git a/app/src/main/res/values/styles.xml b/app/src/main/res/values/styles.xml index 5906eabc..c054ef62 100644 --- a/app/src/main/res/values/styles.xml +++ b/app/src/main/res/values/styles.xml @@ -21,14 +21,14 @@ - -