mirror of
https://github.com/M66B/FairEmail.git
synced 2026-01-02 19:10:11 +01:00
Show number of pending operations in navigation menu
This commit is contained in:
@@ -17,7 +17,7 @@ public class DrawerItem {
|
||||
this.layout = R.layout.item_drawer_separator;
|
||||
}
|
||||
|
||||
DrawerItem(long id, int resid, int icon) {
|
||||
DrawerItem(long id, int icon, int resid) {
|
||||
this.id = id;
|
||||
this.menu = resid;
|
||||
this.layout = R.layout.item_drawer;
|
||||
@@ -25,7 +25,16 @@ public class DrawerItem {
|
||||
this.resid = resid;
|
||||
}
|
||||
|
||||
DrawerItem(long id, int icon, Integer color, String title, boolean highlight) {
|
||||
DrawerItem(long id, int menu, int icon, String title, boolean highlight) {
|
||||
this.id = id;
|
||||
this.menu = menu;
|
||||
this.layout = R.layout.item_drawer;
|
||||
this.icon = icon;
|
||||
this.title = title;
|
||||
this.highlight = highlight;
|
||||
}
|
||||
|
||||
DrawerItem(long id, int icon, String title, Integer color, boolean highlight) {
|
||||
this.id = id;
|
||||
this.layout = R.layout.item_drawer;
|
||||
this.icon = icon;
|
||||
|
||||
Reference in New Issue
Block a user