mirror of https://github.com/M66B/FairEmail.git
Added category names to navigation menu
This commit is contained in:
parent
b001d53bc2
commit
1be4a5d031
|
@ -22,6 +22,7 @@ package eu.faircode.email;
|
||||||
import static android.content.res.Configuration.ORIENTATION_PORTRAIT;
|
import static android.content.res.Configuration.ORIENTATION_PORTRAIT;
|
||||||
import static androidx.drawerlayout.widget.DrawerLayout.LOCK_MODE_LOCKED_OPEN;
|
import static androidx.drawerlayout.widget.DrawerLayout.LOCK_MODE_LOCKED_OPEN;
|
||||||
import static androidx.drawerlayout.widget.DrawerLayout.LOCK_MODE_UNLOCKED;
|
import static androidx.drawerlayout.widget.DrawerLayout.LOCK_MODE_UNLOCKED;
|
||||||
|
import static androidx.recyclerview.widget.RecyclerView.NO_POSITION;
|
||||||
|
|
||||||
import android.annotation.SuppressLint;
|
import android.annotation.SuppressLint;
|
||||||
import android.app.Dialog;
|
import android.app.Dialog;
|
||||||
|
@ -34,6 +35,7 @@ import android.content.Intent;
|
||||||
import android.content.IntentFilter;
|
import android.content.IntentFilter;
|
||||||
import android.content.SharedPreferences;
|
import android.content.SharedPreferences;
|
||||||
import android.content.res.Configuration;
|
import android.content.res.Configuration;
|
||||||
|
import android.graphics.Canvas;
|
||||||
import android.graphics.Color;
|
import android.graphics.Color;
|
||||||
import android.graphics.Rect;
|
import android.graphics.Rect;
|
||||||
import android.graphics.drawable.Drawable;
|
import android.graphics.drawable.Drawable;
|
||||||
|
@ -49,6 +51,7 @@ import android.view.View;
|
||||||
import android.view.ViewGroup;
|
import android.view.ViewGroup;
|
||||||
import android.widget.ImageButton;
|
import android.widget.ImageButton;
|
||||||
import android.widget.LinearLayout;
|
import android.widget.LinearLayout;
|
||||||
|
import android.widget.TextView;
|
||||||
import android.widget.Toast;
|
import android.widget.Toast;
|
||||||
|
|
||||||
import androidx.annotation.NonNull;
|
import androidx.annotation.NonNull;
|
||||||
|
@ -451,10 +454,79 @@ public class ActivityView extends ActivityBilling implements FragmentManager.OnB
|
||||||
vSeparatorOptions.setVisibility(nav_options ? View.VISIBLE : View.GONE);
|
vSeparatorOptions.setVisibility(nav_options ? View.VISIBLE : View.GONE);
|
||||||
|
|
||||||
// Accounts
|
// Accounts
|
||||||
rvAccount.setLayoutManager(new LinearLayoutManager(this));
|
LinearLayoutManager llmAccounts = new LinearLayoutManager(this);
|
||||||
|
rvAccount.setLayoutManager(llmAccounts);
|
||||||
adapterNavAccount = new AdapterNavAccountFolder(this, this);
|
adapterNavAccount = new AdapterNavAccountFolder(this, this);
|
||||||
rvAccount.setAdapter(adapterNavAccount);
|
rvAccount.setAdapter(adapterNavAccount);
|
||||||
|
|
||||||
|
LayoutInflater inflater = LayoutInflater.from(this);
|
||||||
|
DividerItemDecoration categoryDecorator = new DividerItemDecoration(this, llmAccounts.getOrientation()) {
|
||||||
|
@Override
|
||||||
|
public void onDraw(@NonNull Canvas canvas, @NonNull RecyclerView parent, @NonNull RecyclerView.State state) {
|
||||||
|
int count = parent.getChildCount();
|
||||||
|
for (int i = 0; i < count; i++) {
|
||||||
|
View view = parent.getChildAt(i);
|
||||||
|
int pos = parent.getChildAdapterPosition(view);
|
||||||
|
|
||||||
|
View header = getView(view, parent, pos);
|
||||||
|
if (header != null) {
|
||||||
|
canvas.save();
|
||||||
|
canvas.translate(0, parent.getChildAt(i).getTop() - header.getMeasuredHeight());
|
||||||
|
header.draw(canvas);
|
||||||
|
canvas.restore();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void getItemOffsets(Rect outRect, View view, RecyclerView parent, RecyclerView.State state) {
|
||||||
|
int pos = parent.getChildAdapterPosition(view);
|
||||||
|
View header = getView(view, parent, pos);
|
||||||
|
if (header == null)
|
||||||
|
outRect.setEmpty();
|
||||||
|
else
|
||||||
|
outRect.top = header.getMeasuredHeight();
|
||||||
|
}
|
||||||
|
|
||||||
|
private View getView(View view, RecyclerView parent, int pos) {
|
||||||
|
if (nav_pinned)
|
||||||
|
return null;
|
||||||
|
|
||||||
|
if (pos == NO_POSITION)
|
||||||
|
return null;
|
||||||
|
|
||||||
|
if (!getLifecycle().getCurrentState().isAtLeast(Lifecycle.State.STARTED))
|
||||||
|
return null;
|
||||||
|
|
||||||
|
TupleAccountFolder prev = adapterNavAccount.getItemAtPosition(pos - 1);
|
||||||
|
TupleAccountFolder account = adapterNavAccount.getItemAtPosition(pos);
|
||||||
|
if (pos > 0 && prev == null)
|
||||||
|
return null;
|
||||||
|
if (account == null)
|
||||||
|
return null;
|
||||||
|
|
||||||
|
if (pos > 0) {
|
||||||
|
if (Objects.equals(prev.category, account.category))
|
||||||
|
return null;
|
||||||
|
} else {
|
||||||
|
if (account.category == null)
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
View header = inflater.inflate(R.layout.item_nav_group, parent, false);
|
||||||
|
TextView tvCategory = header.findViewById(R.id.tvCategory);
|
||||||
|
|
||||||
|
tvCategory.setText(account.category);
|
||||||
|
|
||||||
|
header.measure(View.MeasureSpec.makeMeasureSpec(parent.getWidth(), View.MeasureSpec.EXACTLY),
|
||||||
|
View.MeasureSpec.makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED));
|
||||||
|
header.layout(0, 0, header.getMeasuredWidth(), header.getMeasuredHeight());
|
||||||
|
|
||||||
|
return header;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
rvAccount.addItemDecoration(categoryDecorator);
|
||||||
|
|
||||||
boolean nav_account = prefs.getBoolean("nav_account", true);
|
boolean nav_account = prefs.getBoolean("nav_account", true);
|
||||||
boolean nav_folder = prefs.getBoolean("nav_folder", true);
|
boolean nav_folder = prefs.getBoolean("nav_folder", true);
|
||||||
ibExpanderAccount.setImageLevel(nav_account || nav_folder ? 0 /* less */ : 1 /* more */);
|
ibExpanderAccount.setImageLevel(nav_account || nav_folder ? 0 /* less */ : 1 /* more */);
|
||||||
|
@ -552,13 +624,13 @@ public class ActivityView extends ActivityBilling implements FragmentManager.OnB
|
||||||
});
|
});
|
||||||
|
|
||||||
// Extra menus
|
// Extra menus
|
||||||
LinearLayoutManager llm = new LinearLayoutManager(this);
|
LinearLayoutManager llmMenuExtra = new LinearLayoutManager(this);
|
||||||
rvMenuExtra.setLayoutManager(llm);
|
rvMenuExtra.setLayoutManager(llmMenuExtra);
|
||||||
adapterNavMenuExtra = new AdapterNavMenu(this, this);
|
adapterNavMenuExtra = new AdapterNavMenu(this, this);
|
||||||
rvMenuExtra.setAdapter(adapterNavMenuExtra);
|
rvMenuExtra.setAdapter(adapterNavMenuExtra);
|
||||||
|
|
||||||
final Drawable d = getDrawable(R.drawable.divider);
|
final Drawable d = getDrawable(R.drawable.divider);
|
||||||
DividerItemDecoration itemDecorator = new DividerItemDecoration(this, llm.getOrientation()) {
|
DividerItemDecoration itemDecorator = new DividerItemDecoration(this, llmMenuExtra.getOrientation()) {
|
||||||
@Override
|
@Override
|
||||||
public void getItemOffsets(Rect outRect, View view, RecyclerView parent, RecyclerView.State state) {
|
public void getItemOffsets(Rect outRect, View view, RecyclerView parent, RecyclerView.State state) {
|
||||||
int pos = parent.getChildAdapterPosition(view);
|
int pos = parent.getChildAdapterPosition(view);
|
||||||
|
|
|
@ -297,6 +297,8 @@ public class AdapterNavAccountFolder extends RecyclerView.Adapter<AdapterNavAcco
|
||||||
Collections.sort(accounts, new Comparator<TupleAccountFolder>() {
|
Collections.sort(accounts, new Comparator<TupleAccountFolder>() {
|
||||||
@Override
|
@Override
|
||||||
public int compare(TupleAccountFolder a1, TupleAccountFolder a2) {
|
public int compare(TupleAccountFolder a1, TupleAccountFolder a2) {
|
||||||
|
// Account
|
||||||
|
|
||||||
int a = Integer.compare(
|
int a = Integer.compare(
|
||||||
a1.order == null ? -1 : a1.order,
|
a1.order == null ? -1 : a1.order,
|
||||||
a2.order == null ? -1 : a2.order);
|
a2.order == null ? -1 : a2.order);
|
||||||
|
@ -307,10 +309,18 @@ public class AdapterNavAccountFolder extends RecyclerView.Adapter<AdapterNavAcco
|
||||||
if (p != 0)
|
if (p != 0)
|
||||||
return p;
|
return p;
|
||||||
|
|
||||||
|
int c = collator.compare(
|
||||||
|
a1.category == null ? "" : a1.category,
|
||||||
|
a2.category == null ? "" : a2.category);
|
||||||
|
if (c != 0)
|
||||||
|
return c;
|
||||||
|
|
||||||
int n = collator.compare(a1.name, a2.name);
|
int n = collator.compare(a1.name, a2.name);
|
||||||
if (n != 0)
|
if (n != 0)
|
||||||
return n;
|
return n;
|
||||||
|
|
||||||
|
// Folder
|
||||||
|
|
||||||
if (a1.folderName == null && a2.folderName == null)
|
if (a1.folderName == null && a2.folderName == null)
|
||||||
return 0;
|
return 0;
|
||||||
else if (a1.folderName == null)
|
else if (a1.folderName == null)
|
||||||
|
@ -461,6 +471,13 @@ public class AdapterNavAccountFolder extends RecyclerView.Adapter<AdapterNavAcco
|
||||||
return items.get(position).id;
|
return items.get(position).id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TupleAccountFolder getItemAtPosition(int pos) {
|
||||||
|
if (pos >= 0 && pos < items.size())
|
||||||
|
return items.get(pos);
|
||||||
|
else
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getItemCount() {
|
public int getItemCount() {
|
||||||
return items.size();
|
return items.size();
|
||||||
|
|
|
@ -0,0 +1,29 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:background="?attr/colorDrawerBackground">
|
||||||
|
|
||||||
|
<androidx.constraintlayout.widget.ConstraintLayout
|
||||||
|
android:id="@+id/clItem"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:foreground="?attr/selectableItemBackground"
|
||||||
|
android:minHeight="42dp">
|
||||||
|
|
||||||
|
<eu.faircode.email.FixedTextView
|
||||||
|
android:id="@+id/tvCategory"
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginStart="48dp"
|
||||||
|
android:layout_marginEnd="12dp"
|
||||||
|
android:gravity="center_horizontal|bottom"
|
||||||
|
android:text="Category"
|
||||||
|
android:textAppearance="@style/TextAppearance.AppCompat.Small"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="parent" />
|
||||||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||||
|
</FrameLayout>
|
Loading…
Reference in New Issue