aboutsummaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorAlex Ning <chineseperson5@gmail.com>2021-01-05 15:22:52 +0000
committerAlex Ning <chineseperson5@gmail.com>2021-01-05 15:22:52 +0000
commit29b6c66ae2ee92673f75217a9e8ac6e19c56c0dc (patch)
treef34df340d14071f7927ea57b54df5b19d0378bab /app
parent68b1c6a7f43db0b14d5b0bc34593706f3e4e06c6 (diff)
downloadinfinity-for-reddit-29b6c66ae2ee92673f75217a9e8ac6e19c56c0dc.tar
infinity-for-reddit-29b6c66ae2ee92673f75217a9e8ac6e19c56c0dc.tar.gz
infinity-for-reddit-29b6c66ae2ee92673f75217a9e8ac6e19c56c0dc.tar.bz2
infinity-for-reddit-29b6c66ae2ee92673f75217a9e8ac6e19c56c0dc.tar.lz
infinity-for-reddit-29b6c66ae2ee92673f75217a9e8ac6e19c56c0dc.tar.xz
infinity-for-reddit-29b6c66ae2ee92673f75217a9e8ac6e19c56c0dc.tar.zst
infinity-for-reddit-29b6c66ae2ee92673f75217a9e8ac6e19c56c0dc.zip
Fix a minor string issue.
Diffstat (limited to 'app')
-rw-r--r--app/src/main/java/ml/docilealligator/infinityforreddit/activities/MainActivity.java148
-rw-r--r--app/src/main/java/ml/docilealligator/infinityforreddit/adapters/NavigationDrawerRecyclerViewAdapter.java2
2 files changed, 66 insertions, 84 deletions
diff --git a/app/src/main/java/ml/docilealligator/infinityforreddit/activities/MainActivity.java b/app/src/main/java/ml/docilealligator/infinityforreddit/activities/MainActivity.java
index 4605c707..6ace8b65 100644
--- a/app/src/main/java/ml/docilealligator/infinityforreddit/activities/MainActivity.java
+++ b/app/src/main/java/ml/docilealligator/infinityforreddit/activities/MainActivity.java
@@ -676,89 +676,71 @@ public class MainActivity extends BaseActivity implements SortTypeSelectionCallb
@Override
public void onMenuClick(int stringId) {
Intent intent = null;
- switch (stringId) {
- case R.string.profile:
- intent = new Intent(MainActivity.this, ViewUserDetailActivity.class);
- intent.putExtra(ViewUserDetailActivity.EXTRA_USER_NAME_KEY, mAccountName);
- break;
- case R.string.subscriptions:
- intent = new Intent(MainActivity.this, SubscribedThingListingActivity.class);
- break;
- case R.string.multi_reddit:
- intent = new Intent(MainActivity.this, SubscribedThingListingActivity.class);
- intent.putExtra(SubscribedThingListingActivity.EXTRA_SHOW_MULTIREDDITS, true);
- break;
- case R.string.inbox:
- intent = new Intent(MainActivity.this, InboxActivity.class);
- break;
- case R.string.upvoted:
- intent = new Intent(MainActivity.this, AccountPostsActivity.class);
- intent.putExtra(AccountPostsActivity.EXTRA_USER_WHERE, PostDataSource.USER_WHERE_UPVOTED);
- break;
- case R.string.downvoted:
- intent = new Intent(MainActivity.this, AccountPostsActivity.class);
- intent.putExtra(AccountPostsActivity.EXTRA_USER_WHERE, PostDataSource.USER_WHERE_DOWNVOTED);
- break;
- case R.string.hidden:
- intent = new Intent(MainActivity.this, AccountPostsActivity.class);
- intent.putExtra(AccountPostsActivity.EXTRA_USER_WHERE, PostDataSource.USER_WHERE_HIDDEN);
- break;
- case R.string.saved:
- intent = new Intent(MainActivity.this, AccountSavedThingActivity.class);
- break;
- case R.string.gilded:
- intent = new Intent(MainActivity.this, AccountPostsActivity.class);
- intent.putExtra(AccountPostsActivity.EXTRA_USER_WHERE, PostDataSource.USER_WHERE_GILDED);
- break;
- case R.string.light_theme:
- mSharedPreferences.edit().putString(SharedPreferencesUtils.THEME_KEY, "0").apply();
- AppCompatDelegate.setDefaultNightMode(MODE_NIGHT_NO);
- mCustomThemeWrapper.setThemeType(CustomThemeSharedPreferencesUtils.LIGHT);
- break;
- case R.string.dark_theme:
- mSharedPreferences.edit().putString(SharedPreferencesUtils.THEME_KEY, "1").apply();
- AppCompatDelegate.setDefaultNightMode(MODE_NIGHT_YES);
- if (mSharedPreferences.getBoolean(SharedPreferencesUtils.AMOLED_DARK_KEY, false)) {
- mCustomThemeWrapper.setThemeType(CustomThemeSharedPreferencesUtils.AMOLED);
- } else {
- mCustomThemeWrapper.setThemeType(CustomThemeSharedPreferencesUtils.DARK);
- }
- break;
- case R.string.enable_nsfw:
- if (sectionsPagerAdapter != null) {
- mNsfwAndSpoilerSharedPreferences.edit().putBoolean((mAccountName == null ? "" : mAccountName) + SharedPreferencesUtils.NSFW_BASE, true).apply();
- sectionsPagerAdapter.changeNSFW(true);
- }
- break;
- case R.string.disable_nsfw:
- if (sectionsPagerAdapter != null) {
- mNsfwAndSpoilerSharedPreferences.edit().putBoolean((mAccountName == null ? "" : mAccountName) + SharedPreferencesUtils.NSFW_BASE, false).apply();
- sectionsPagerAdapter.changeNSFW(false);
- }
- break;
- case R.string.settings:
- intent = new Intent(MainActivity.this, SettingsActivity.class);
- break;
- case R.string.add_account:
- Intent addAccountIntent = new Intent(MainActivity.this, LoginActivity.class);
- startActivityForResult(addAccountIntent, LOGIN_ACTIVITY_REQUEST_CODE);
- break;
- case R.string.anonymous_account:
- new SwitchToAnonymousAccountAsyncTask(mRedditDataRoomDatabase, false,
- () -> {
- Intent anonymousIntent = new Intent(MainActivity.this, MainActivity.class);
- startActivity(anonymousIntent);
- finish();
- }).execute();
- break;
- case R.string.log_out:
- new SwitchToAnonymousAccountAsyncTask(mRedditDataRoomDatabase, true,
- () -> {
- Intent logOutIntent = new Intent(MainActivity.this, MainActivity.class);
- startActivity(logOutIntent);
- finish();
- }).execute();
-
+ if (stringId == R.string.profile) {
+ intent = new Intent(MainActivity.this, ViewUserDetailActivity.class);
+ intent.putExtra(ViewUserDetailActivity.EXTRA_USER_NAME_KEY, mAccountName);
+ } else if (stringId == R.string.subscriptions) {
+ intent = new Intent(MainActivity.this, SubscribedThingListingActivity.class);
+ } else if (stringId == R.string.multi_reddit) {
+ intent = new Intent(MainActivity.this, SubscribedThingListingActivity.class);
+ intent.putExtra(SubscribedThingListingActivity.EXTRA_SHOW_MULTIREDDITS, true);
+ } else if (stringId == R.string.inbox) {
+ intent = new Intent(MainActivity.this, InboxActivity.class);
+ } else if (stringId == R.string.upvoted) {
+ intent = new Intent(MainActivity.this, AccountPostsActivity.class);
+ intent.putExtra(AccountPostsActivity.EXTRA_USER_WHERE, PostDataSource.USER_WHERE_UPVOTED);
+ } else if (stringId == R.string.downvoted) {
+ intent = new Intent(MainActivity.this, AccountPostsActivity.class);
+ intent.putExtra(AccountPostsActivity.EXTRA_USER_WHERE, PostDataSource.USER_WHERE_DOWNVOTED);
+ } else if (stringId == R.string.hidden) {
+ intent = new Intent(MainActivity.this, AccountPostsActivity.class);
+ intent.putExtra(AccountPostsActivity.EXTRA_USER_WHERE, PostDataSource.USER_WHERE_HIDDEN);
+ } else if (stringId == R.string.account_saved_thing_activity_label) {
+ intent = new Intent(MainActivity.this, AccountSavedThingActivity.class);
+ } else if (stringId == R.string.gilded) {
+ intent = new Intent(MainActivity.this, AccountPostsActivity.class);
+ intent.putExtra(AccountPostsActivity.EXTRA_USER_WHERE, PostDataSource.USER_WHERE_GILDED);
+ } else if (stringId == R.string.light_theme) {
+ mSharedPreferences.edit().putString(SharedPreferencesUtils.THEME_KEY, "0").apply();
+ AppCompatDelegate.setDefaultNightMode(MODE_NIGHT_NO);
+ mCustomThemeWrapper.setThemeType(CustomThemeSharedPreferencesUtils.LIGHT);
+ } else if (stringId == R.string.dark_theme) {
+ mSharedPreferences.edit().putString(SharedPreferencesUtils.THEME_KEY, "1").apply();
+ AppCompatDelegate.setDefaultNightMode(MODE_NIGHT_YES);
+ if (mSharedPreferences.getBoolean(SharedPreferencesUtils.AMOLED_DARK_KEY, false)) {
+ mCustomThemeWrapper.setThemeType(CustomThemeSharedPreferencesUtils.AMOLED);
+ } else {
+ mCustomThemeWrapper.setThemeType(CustomThemeSharedPreferencesUtils.DARK);
+ }
+ } else if (stringId == R.string.enable_nsfw) {
+ if (sectionsPagerAdapter != null) {
+ mNsfwAndSpoilerSharedPreferences.edit().putBoolean((mAccountName == null ? "" : mAccountName) + SharedPreferencesUtils.NSFW_BASE, true).apply();
+ sectionsPagerAdapter.changeNSFW(true);
+ }
+ } else if (stringId == R.string.disable_nsfw) {
+ if (sectionsPagerAdapter != null) {
+ mNsfwAndSpoilerSharedPreferences.edit().putBoolean((mAccountName == null ? "" : mAccountName) + SharedPreferencesUtils.NSFW_BASE, false).apply();
+ sectionsPagerAdapter.changeNSFW(false);
+ }
+ } else if (stringId == R.string.settings) {
+ intent = new Intent(MainActivity.this, SettingsActivity.class);
+ } else if (stringId == R.string.add_account) {
+ Intent addAccountIntent = new Intent(MainActivity.this, LoginActivity.class);
+ startActivityForResult(addAccountIntent, LOGIN_ACTIVITY_REQUEST_CODE);
+ } else if (stringId == R.string.anonymous_account) {
+ new SwitchToAnonymousAccountAsyncTask(mRedditDataRoomDatabase, false,
+ () -> {
+ Intent anonymousIntent = new Intent(MainActivity.this, MainActivity.class);
+ startActivity(anonymousIntent);
+ finish();
+ }).execute();
+ } else if (stringId == R.string.log_out) {
+ new SwitchToAnonymousAccountAsyncTask(mRedditDataRoomDatabase, true,
+ () -> {
+ Intent logOutIntent = new Intent(MainActivity.this, MainActivity.class);
+ startActivity(logOutIntent);
+ finish();
+ }).execute();
}
if (intent != null) {
startActivity(intent);
diff --git a/app/src/main/java/ml/docilealligator/infinityforreddit/adapters/NavigationDrawerRecyclerViewAdapter.java b/app/src/main/java/ml/docilealligator/infinityforreddit/adapters/NavigationDrawerRecyclerViewAdapter.java
index 9d022099..c29cfb36 100644
--- a/app/src/main/java/ml/docilealligator/infinityforreddit/adapters/NavigationDrawerRecyclerViewAdapter.java
+++ b/app/src/main/java/ml/docilealligator/infinityforreddit/adapters/NavigationDrawerRecyclerViewAdapter.java
@@ -293,7 +293,7 @@ public class NavigationDrawerRecyclerViewAdapter extends RecyclerView.Adapter<Re
drawableId = R.drawable.ic_outline_lock_24dp;
break;
case 10:
- stringId = R.string.saved;
+ stringId = R.string.account_saved_thing_activity_label;
drawableId = R.drawable.ic_outline_bookmarks_24dp;
break;
case 11: