Project

General

Profile

Actions

Feature #1074

closed

Reimplement ActionBarDrawerToggle to get rid of the wasted padding

Added by v ... 8 months ago. Updated 3 months ago.

Status:
Closed
Priority:
Next Release
Start date:
08/23/2023
Due date:
% Done:

0%

Estimated time:

Description

It would be nice to enlarge the URL input eliminating the empty space between the said input and the hamburger button (named "Open navigation drawer").

Also, you can see that the width of the hamburger button and the other buttons is not the same. Maybe, you should narrow the hamburger button's width.

You can also notice that the three-dots button has less width than the two buttons on its left ("JavaScript" and "Refresh" buttons). Maybe, you can also narrow these two buttons width.

See the screenshot below.


Files

pb.app-bar-layout.jpg (29.9 KB) pb.app-bar-layout.jpg v ..., 08/23/2023 11:21 AM
pb.empty-space.png (111 KB) pb.empty-space.png v ..., 08/24/2023 04:51 AM
Implementation.png (15.1 KB) Implementation.png Soren Stoutner, 12/28/2023 05:04 PM
Actions #1

Updated by Soren Stoutner 8 months ago

I address this at the following URL under the section "Reuse existing Android elements as much as possible".

https://www.stoutner.com/privacy-browser-design-guidelines/

I would suggest you read that first and then add any comments you might have.

Actions #2

Updated by ask low 8 months ago

I have a fairly small device (6") & I have no issues with the address bar here.
The space utilization is not that bad currently. If you need to peek in little bit more of the URL, I would consider you to disable "Extra button" in settings which'll disable refresh icon. You can still refresh either via gesture, or from the menu.

I think there is no need to narrow down or up any of the existing buttons. Infact, I would even recommend Soren to expand 3 dot menu into a square. Because I had mishits accessing the menu a lot of times.

Actions #3

Updated by v ... 8 months ago

@Soren Stoutner, thanks for the link, I never read this page until the end. Now, I'm OK with the different button widths, even if I don't fully understand why these differences. Google seems to have designed them in this way, and it's safer/easier/maintainable to use them without (or with minimum) alterations.

However, do you know why this empty space outside the hamburger icon and the URL input paddings ? I don't understand.

Actions #4

Updated by v ... 8 months ago

@ask low, I intentionally enabled the "Display additional app bar icons" setting, because I want to be able to quickly access to the refresh trigger (menu/button), so it's a no go via the more (kebab) button, and I don't like the refresh gesture, because I often want to check if I'm on the top of the page, which previously was often triggering a refresh of the page.

Actions #5

Updated by Soren Stoutner 8 months ago

  • Subject changed from More space for the URL input to Reimplement ActionBarDrawerToggle to get rid of the wasted padding
  • Priority changed from 3.x to 4.x

@v ..., the extra padding between the hamburger menu and the rest of the URL bar is automatically added by Android's `ActionBarDrawerToggle`.

https://developer.android.com/reference/androidx/appcompat/app/ActionBarDrawerToggle

It is very annoying and, in my opinion, wasted space. But I don't think I could get Google to change it, and, so far, it hasn't felt worth it to reimplement the drawer toggle myself. This is something that, if I ever get to the end of the 4.x series and have nothing else to spend my time on, I would probably do.

Actions #6

Updated by ask low 8 months ago

What do you think about the current Material You design standard ?
I think there is an issue tracker somewhere I need to search and watch it.

Actions #7

Updated by Soren Stoutner 8 months ago

I generally don't like most of Google's current design language. It tends to have poor information density (there is a small amount of information displayed for the amount of screen real estate consumed). Beyond that, I find the Material You color theming to be ugly, and to force other ugly design decisions, like the push for monochromatic launcher icons.

So far, it is possible to design for Android using standard Android components without getting sucked into the Material You nonsense. Given Google's track record, about the time they would start forcing Material You onto the standard components, they will move on to something "so much better than that dated looking Material You". However, if that isn't what happens and everyone has to adopt a Material You design on Android, then I will probably find the least ugly and most user-empowering way to do so.

Actions #8

Updated by Soren Stoutner 5 months ago

  • Priority changed from 4.x to Next Release
Actions #9

Updated by ask low 5 months ago

What do you think about Chrome's design itself ? The information density of it, is not as bad as material you design.
https://9to5google.com/2023/01/24/chrome-address-bar-redesign/
<HOME> <ADDRESS-BAR> <TABS> <MENU>
On privacy browser, it's
<SIDEBAR> <ADDRESS-BAR> <JS> <MENU>
But with inconsistent paddings, which happened to be caused by standard library function ActionBarDrawerToggle.

Material You standard is primarily incorporated by Compose with Dart language. But obviously independent of any framework/language.

I think part of the issue with interface density, is that people became lazy, lost focus hitting small buttons & their thumbs got fat due to their overweight diets (sorry pun intended ;D)

Neither I complain about monocoloured icons, as they mostly depict uniformity. But for the color blind people, it becomes difficult to distinguish between them. I literally use OLauncher mini, which is a dead simple launcher without any icons. It's just 23 kB lmao.
https://apt.izzysoft.de/fdroid/index/apk/app.olauncher.light

Actions #10

Updated by Soren Stoutner 5 months ago

The ActionBarDrawerToggle, as currently used in Privacy Browser (not how it was used years ago) ends up being rather easy to replace with a static icon where I can control the padding. So, I think I will do that.

Actions #11

Updated by ask low 5 months ago

@v ..., another hacky way I've found to refresh the page without refresh function, is to quickly double tap JS lmao.
No need to enable additional icon on toolbar.

Actions #12

Updated by Soren Stoutner 5 months ago

Replacing the ActionBarDrawerToggle will fix all the problems on the left. It will not make any changes to the icons on the right, which are created by the Options menu.

Actions #13

Updated by Soren Stoutner 4 months ago

Implemented in commit: https://gitweb.stoutner.com/?p=PrivacyBrowserAndroid.git;a=commitdiff;h=6b662fcb3e0c8dfbdc212e55d10ad291ec569280;ds=sidebyside

The results:

Note that the system controls the padding on the left of the icon, which is a little more than I would like. I control the padding between the icon and the URL EditText, which is set to 8dp. This is a bit less than the padding on the left or the padding between the URL EditText and the Options Menu icons (which I also don't control), but it is close enough that it doesn't look odd while maximizing the amount of space left for the URL EditText.

Actions #14

Updated by Soren Stoutner 3 months ago

I increased the padding to 10dp, because 8dp looked off-balance when Domain Settings were enabled.

Actions

Also available in: Atom PDF