mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-01 12:44:42 +00:00
Added option to disable extra buttons
This commit is contained in:
parent
6b330b6d80
commit
8454f981ad
3 changed files with 24 additions and 7 deletions
|
@ -1533,6 +1533,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
|||
boolean experiments = prefs.getBoolean("experiments", false);
|
||||
boolean expand_all = prefs.getBoolean("expand_all", false);
|
||||
boolean expand_one = prefs.getBoolean("expand_one", true);
|
||||
boolean extras = prefs.getBoolean("message_extras", true);
|
||||
boolean tools = prefs.getBoolean("message_tools", true);
|
||||
|
||||
ibTrash.setTag(delete);
|
||||
|
@ -1542,16 +1543,16 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
|||
ibUnsubscribe.setVisibility(!tools || message.unsubscribe == null ? View.GONE : View.VISIBLE);
|
||||
ibAnswer.setVisibility(!tools || outbox || (!expand_all && expand_one) ? View.GONE : View.VISIBLE);
|
||||
ibMove.setVisibility(tools && move ? View.VISIBLE : View.GONE);
|
||||
ibArchive.setVisibility(tools && archive ? View.VISIBLE : View.GONE);
|
||||
ibTrash.setVisibility(tools && trash ? View.VISIBLE : View.GONE);
|
||||
ibArchive.setVisibility(tools && extras && archive ? View.VISIBLE : View.GONE);
|
||||
ibTrash.setVisibility(tools && extras && trash ? View.VISIBLE : View.GONE);
|
||||
ibJunk.setVisibility(tools && junk ? View.VISIBLE : View.GONE);
|
||||
ibInbox.setVisibility(tools && inbox ? View.VISIBLE : View.GONE);
|
||||
ibMore.setVisibility(!tools || outbox ? View.GONE : View.VISIBLE);
|
||||
ibTools.setImageLevel(tools ? 0 : 1);
|
||||
ibTools.setVisibility(View.VISIBLE);
|
||||
|
||||
ibTrashBottom.setVisibility(trash ? View.VISIBLE : View.GONE);
|
||||
ibArchiveBottom.setVisibility(archive ? View.VISIBLE : View.GONE);
|
||||
ibTrashBottom.setVisibility(extras && trash ? View.VISIBLE : View.GONE);
|
||||
ibArchiveBottom.setVisibility(extras && archive ? View.VISIBLE : View.GONE);
|
||||
|
||||
if (bind)
|
||||
bindBody(message, scroll);
|
||||
|
@ -3661,9 +3662,13 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
|||
boolean show_headers = properties.getValue("headers", message.id);
|
||||
boolean full = properties.getValue("full", message.id);
|
||||
|
||||
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
|
||||
boolean message_extras = prefs.getBoolean("message_extras", true);
|
||||
|
||||
PopupMenuLifecycle popupMenu = new PopupMenuLifecycle(context, powner, ibMore);
|
||||
popupMenu.inflate(R.menu.popup_message_more);
|
||||
|
||||
popupMenu.getMenu().findItem(R.id.menu_extras).setChecked(message_extras);
|
||||
popupMenu.getMenu().findItem(R.id.menu_unseen).setTitle(message.ui_seen ? R.string.title_unseen : R.string.title_seen);
|
||||
popupMenu.getMenu().findItem(R.id.menu_unseen).setEnabled(
|
||||
(message.uid != null && !message.folderReadOnly) || message.accountProtocol != EntityAccount.TYPE_IMAP);
|
||||
|
@ -3713,6 +3718,9 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
|||
@Override
|
||||
public boolean onMenuItemClick(MenuItem target) {
|
||||
switch (target.getItemId()) {
|
||||
case R.id.menu_extras:
|
||||
onMenuExtras(message, target.isChecked());
|
||||
return true;
|
||||
case R.id.menu_unseen:
|
||||
onMenuUnseen(message);
|
||||
return true;
|
||||
|
@ -3971,6 +3979,12 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
|||
ToastEx.makeText(context, context.getString(R.string.title_no_viewer, uri), Toast.LENGTH_LONG).show();
|
||||
}
|
||||
|
||||
private void onMenuExtras(final TupleMessageEx message, boolean isChecked) {
|
||||
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
|
||||
prefs.edit().putBoolean("message_extras", !isChecked).apply();
|
||||
setupTools(message, false, false);
|
||||
}
|
||||
|
||||
private void onMenuUnseen(final TupleMessageEx message) {
|
||||
Bundle args = new Bundle();
|
||||
args.putLong("id", message.id);
|
||||
|
|
|
@ -1,5 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<menu xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item
|
||||
android:id="@+id/menu_extras"
|
||||
android:checkable="true"
|
||||
android:title="@string/title_extras" />
|
||||
|
||||
<item
|
||||
android:id="@+id/menu_unseen"
|
||||
android:title="@string/title_unseen" />
|
||||
|
|
|
@ -352,9 +352,6 @@
|
|||
<string name="title_advanced_preview">Show message preview</string>
|
||||
<string name="title_advanced_preview_italic">Show message preview in italics</string>
|
||||
<string name="title_advanced_preview_lines">Number of preview lines</string>
|
||||
<string name="title_advanced_archive_trash">Show buttons to archive or trash a message</string>
|
||||
<string name="title_advanced_move">Show button to move a message</string>
|
||||
<string name="title_advanced_create_rule">Show button to create a rule for a message</string>
|
||||
<string name="title_advanced_addresses">Expand address details by default</string>
|
||||
<string name="title_advanced_attachments_alt">Show attachments after the message text</string>
|
||||
<string name="title_advanced_contrast">Use high contrast for message text</string>
|
||||
|
@ -724,6 +721,7 @@
|
|||
<string name="title_subject_reply">Re: %1$s</string>
|
||||
<string name="title_subject_forward">Fwd: %1$s</string>
|
||||
|
||||
<string name="title_extras">Extra buttons</string>
|
||||
<string name="title_seen">Mark read</string>
|
||||
<string name="title_unseen">Mark unread</string>
|
||||
<string name="title_hide">Hide</string>
|
||||
|
|
Loading…
Reference in a new issue