Statusbar Notification Icon Limit Increased to 7, Android 12 - Google Pixel 3a XL Themes, Apps, and Mods

These modules should increase Statusbar Notification Icon Limit to 7
Uploaded 2-10-22
Stock
MoreNotations.zip | by Tulsadiver for Pixel
Download GApps, Roms, Kernels, Themes, Firmware, and more. Free file hosting for all Android developers.
www.androidfilehost.com
-------------------------------------------------
If I helped, hit the Thanks Button!
Feeling generous, send me a beer!
--------------------------------------------------

Since your now working on modifying status bar and nav bar is there anyway to make both status bar and nav bar the same as the accent color. So all text and icons would be the accent color instead of white?

adm1jtg said:
Since your now working on modifying status bar and nav bar is there anyway to make both status bar and nav bar the same as the accent color. So all text and icons would be the accent color instead of white?
Click to expand...
Click to collapse
The Statusbar-navbar Icons can be colored but separately from the settings/styles accent colors.
https://forum.xda-developers.com/pixel-3a-xl/themes/adb-mod-installer-t3930120

Tulsadiver said:
The Statusbar-navbar Icons can be colored but separately from the settings/styles accent colors.
https://forum.xda-developers.com/pixel-3a-xl/themes/adb-mod-installer-t3930120
Click to expand...
Click to collapse
ok looking for FFA000 color again. Also notification text I see is also colored as an option so same for that.
Downloading now

adm1jtg said:
ok looking for FFA000 color again. Also notification text I see is also colored as an option so same for that.
Downloading now
Click to expand...
Click to collapse
If you color notification text color you cannot use dark mode and expect it to work.

I just used systemui tuner to achieve this. Any way you can make it 8 or is it limited to 7? Systemui tuner limits me at 7

luigi90210 said:
I just used systemui tuner to achieve this. Any way you can make it 8 or is it limited to 7? Systemui tuner limits me at 7
Click to expand...
Click to collapse
7 is the limit.

luigi90210 said:
I just used systemui tuner to achieve this. Any way you can make it 8 or is it limited to 7? Systemui tuner limits me at 7
Click to expand...
Click to collapse
How did you do this?

June update has been uploaded.

@Tulsadiver do you mind sharing what you changed (in the code)? I will like to incorporate this into my ROM.

creeve4 said:
@Tulsadiver do you mind sharing what you changed (in the code)? I will like to incorporate this into my ROM.
Click to expand...
Click to collapse
I deal in smali code, not Java.
In SystemUIGoogle.apk
Edit smali/com/Android/systemui/phone/NotificationIconContainer.smali
Search for const/4 v3, 0x4
Change to const/4 v3, 0x7
I also change dimension of overflow_dot_radius to 0.0dip in res/values/dimens.xml
Edit: I think in Java you edit
public static final int MAX_STATIC_ICONS = 4;
To public static final int MAX_STATIC_ICONS = 7;

Tulsadiver said:
I deal in smali code, not Java.
In SystemUIGoogle.apk
Edit smali/com/Android/systemui/phone/NotificationIconContainer.smali
Search for const/4 v3, 0x4
Change to const/4 v3, 0x7
I also change dimension of overflow_dot_radius to 0.0dip in res/values/dimens.xml
Edit: I think in Java you edit
public static final int MAX_STATIC_ICONS = 4;
To public static final int MAX_STATIC_ICONS = 7;
Click to expand...
Click to collapse
Thanks! I can figure out the edits needed in java, this narrows it down for me.

creeve4 said:
Thanks! I can figure out the edits needed in java, this narrows it down for me.
Click to expand...
Click to collapse
I edited my post to include Java....

March update has been uploaded.

June update has been uploaded.

Related

[MOD][GUIDE]Touchwiz icons layout

Hi! Here is one small MOD and GUIDE for modding icon appearance in default samsung launcher I inspired here, thanks
What we can change:
icon count in row and column in menu
icon count in row and column on home screen
icon count on home screen in bottom line
What we need:
CWM (optional)
root
SecLauncher2.apk from system\app folder
How to mod:
make full backup
decompile SecLauncher2.apk
locate files
res\values-sw320dp-hdpi\integers.xml
res\values-sw320dp-hdpi\dimens.xml
in integers.xml we can change:
Code:
[I]icon count in row on home screen[/I]
<integer name="home_cellCountX">[COLOR="Red"]4[/COLOR]</integer>
[I]icon count in column on home screen[/I]
<integer name="home_cellCountY">[COLOR="red"]4[/COLOR]</integer>
[I]icon count in row in menu[/I]
<integer name="menuAppsGrid_cellCountX">[COLOR="red"]4[/COLOR]</integer>
[I]icon count in column in menu[/I]
<integer name="menuAppsGrid_cellCountY">[COLOR="red"]5[/COLOR]</integer>
[I]icon count on home screen in bottom line[/I]
<integer name="hotseat_cellCountX">[COLOR="red"]5[/COLOR]</integer>
In dimens.xml we can change:
Code:
[I]size of icons, should be change if you increase icon count in row/column otherwise icons will be too close[/I]
<dimen name="app_icon_size">[COLOR="Red"]48.0[/COLOR]dip</dimen>
[I]should be change if you changed home_cellCountX in integers.xml[/I]
<dimen name="home_cellWidth_port">[COLOR="red"]80.0[/COLOR]dip</dimen>
[I]should be change if you changed home_cellCountY in integers.xml[/I]
<dimen name="home_cellHeight_port">[COLOR="red"]96.0[/COLOR]dip</dimen>
[I]should be change if you changed hotseat_cellCountX in integers.xml[/I]
<dimen name="hotseat_cellWidth">[COLOR="red"]60.0[/COLOR]dip</dimen>
[I]should be change if you changed menuAppsGrid_cellCountX in integers.xml[/I]
<dimen name="menuAppsGrid_cellWidth">[COLOR="red"]78.0[/COLOR]dip</dimen>
[I]should be change if you changed menuAppsGrid_cellCountY in integers.xml[/I]
<dimen name="menuAppsGrid_cellHeight">[COLOR="red"]84.0[/COLOR]dip</dimen>
compile
copy back to phone
reboot
One small example:
For example I want to 5 icons in row in menu (default is 4). If I want to change this, I have to change in integers.xml line:
<integer name="menuAppsGrid_cellCountX">4</integer> to <integer name="menuAppsGrid_cellCountX">5</integer>
and in dimens.xml change line:
<dimen name="menuAppsGrid_cellWidth">78.0dip</dimen> to <dimen name="menuAppsGrid_cellWidth">62.5dip</dimen>
How to get proper numbers for dimens.xml file:
In my example I had original 4 icons and want 5. This mean I have to get from 78.0dpi -> 62.5dpi
(4 x 78) / 5 = 62.5 (in fact it is 62.4)
If you change one line in integers.xml, you have to change one proper line in dimens.xml.
In attachment is my moded SecLauncher2.apk, it has 6x5 icons in menu and 6 icons on home screen at bottom (see pictures). It is ODEX from 4.1.2. It should works on "N" model too, but i didn't test it.
edit:
Hi, I made for me new 7x5 menu layout, HS is still same. So if someone wants, here is it. Now it is DEODEXED.
excellent effort thank you I will try it later and make a feedback
please hit THANKS if I helped
sent from somewhere and somehow by the wonderful s3 mini
Thanks but, way ahead of ya.
modded to change the icons is much more appreciated to me as the stock touchwiz icons looks terrible...
nazri5363 said:
modded to change the icons is much more appreciated to me as the stock touchwiz icons looks terrible...
Click to expand...
Click to collapse
What you want to do is not related to Tw launcher editing actually. Google "change app icon" and you will find something useful!
Normally icons are placed in the apks under (in our case) res/drawable-hdpi (or drawable320dp-hdpi) under the name of icon.png or ic_launcher_icon.png
Sometimes you can also find them under /res/mipmap-hdpi !
Remember, if you want to change a icon don't unzip the apk, just open it with winrar/7zip and simply replace the icon png
Sent from my GT-I8190N using xda app-developers app
Hi, I added to first post new deodexed SecLauncher witch 7x5 menu grid...so if you want than use
tnx man for luncher very nice
can u accwather wedget for download?
It can be this forum.xda-developers.com/showpost.php?p=40192050&postcount=18
somin.n said:
It can be this forum.xda-developers.com/showpost.php?p=40192050&postcount=18
Click to expand...
Click to collapse
tanx somin...
I made it
luncher for rom dodex just 6 icons in desktop
What kind of error? With compilation or phone doesn't work with moded file?
somin.n said:
What kind of error? With compilation or phone doesn't work with moded file?
Click to expand...
Click to collapse
6 icons desktop
menu 5x5
rom dodex
icon launcher
6 icon desktop Down
5 icon desktop up
menu 5x5
rom dodex
Will this work for the S4? I want touchwiz to have 5 rows on the home screen and the dock at the bottom making the 6 row?
Analyzer52 said:
Will this work for the S4? I want touchwiz to have 5 rows on the home screen and the dock at the bottom making the 6 row?
Click to expand...
Click to collapse
You can try, but it is likely
Analyzer52 said:
Will this work for the S4? I want touchwiz to have 5 rows on the home screen and the dock at the bottom making the 6 row?
Click to expand...
Click to collapse
Hi! It should works, but you have to use SecLauncher2.apk from S4, not files from this thread, and mod it by yourself. And one more thing, dimens.xml and integers.xml willn't be in res\values-sw320dp-hdpi\, you have to find which folder is responsible for your phone resolution. Good luck
Thanks..
I made 4*6 apps menu Touchwiz with your guide...
Now updated [JB][MOD]Touchwiz with auto-rotation (4*6-v 6*3-h menu) default dpi. I think it will work for S3 mini as same screen size and dpi.
p_a_r_s_a7 said:
6 icon desktop Down
5 icon desktop up
menu 5x5
rom dodex
Click to expand...
Click to collapse
Hi,
Can you please tell me where the file is for this mod? Cheers
thank it helped me lot
Please make default icon layout on Home screen (4) plz....

How to change color of text below icons

Does anyone know how to change the color of the text under the icons , mine are like a off white color, is their a xposed app for this?
J.dunn9984 said:
Does anyone know how to change the color of the text under the icons , mine are like a off white color, is their a xposed app for this?
Click to expand...
Click to collapse
Able to change icon label color with Atom launcher https://play.google.com/store/apps/details?id=com.dlto.atom.launcher&hl=en
yes there is a xpossed app, if i remember correctly try wannam or gravity...
J.dunn9984 said:
Does anyone know how to change the color of the text under the icons , mine are like a off white color, is their a xposed app for this?
Click to expand...
Click to collapse
For this you have to decompile the launcher apk, than go to res\values and open styles.xml.
In the xml file search for
Code:
<style name="BaseHomeIcon">
(should be on top)
and change the value for the color in red
Code:
<item name="android:textColor">#[COLOR="Red"]ffffffff[/COLOR]</item>
Recompile it, copy the AndroidManifest.xml and META-INF folder from the originale apk to the new compiled apk and push it to the right place.

[MOD][DEODEX][5.1.1][236] Framework with Tinted Navbar color = StatusBar

Now I wanna share my Project,Framework with tint navbar color=status bar color in some popular apps like Gmail, YouTube, DropBox. But may not affect to all
Then again,thanks to all the masters who have shared knowledge and I can't say one by one
and if the project is useful, just press thank you
https://yadi.sk/d/pv6YdLH03MVdMY
Link is restricted access
please update the link
drei.liter.milch said:
please update the link
Click to expand...
Click to collapse
You can do your own - decompile framework-res apk, search through /res/values/styles.xml for anywhere it says
Code:
<item name="navigationBarColor">...
and change 'black' to '?colorPrimary'. Recompile, sign, push...
I'll give it a try immediately :fingers-crossed:
---
@levone1
i had to replace the whole string ("@color/black" -> "?colorPrimary"), then it compiled successfully.
but my navbar still is just black. I guess the value is overridden by another one..
drei.liter.milch said:
I'll give it a try immediately :fingers-crossed:
---
@levone1
i had to replace the whole string ("@color/black" -> "?colorPrimary"), then it compiled successfully.
but my navbar still is just black. I guess the value is overridden by another one..
Click to expand...
Click to collapse
Many apps have their own navigation bar color value built in to the apk, so those ones will not be changed, (but you can do the same thing to the app apk if you want) . Apps that call on framework-res styles for navigation bar color will show the change. Also, make sure you change all of the references in styles.xml. For example, if you change the value in Theme.DeviceDefault, but not in Theme.Material, etc, then only apps that call on Theme.DeviceDefault will show it...

Transparent theme 6.0.1

The story is as follows. I want to make the statusbar and navigion bar completely transparent. I set them to hide with windowTranslucentNavigation "> true and windowTranslucentStatus"> true in styles.xml in style <style name = "Theme">. Added the line android: fitsSystemWindows> true. As a result, transparency appeared, but new problems also appeared. I showed them in the screenshots, the clock indicator moved to the right and so on. How to make transparency without shifting the text? I've read a lot of ways on the Transparent / Translucent style, but what am I doing wrong? It would be desirable that there would be a transparency as in an album from Sony, instead of a black frame.
Don't touch styles.. Just set the primary and secondary colors to #00000000 in values / colors.xml
shehabskull said:
Don't touch styles.. Just set the primary and secondary colors to #00000000 in values / colors.xml
Click to expand...
Click to collapse
These colors do not color the status and the nav. bar, in my framework there is no code of black color. Apparently Sony has somehow standardized the navigation panels in black, which can only be turned off and turned on. I used the firmware on android 4.3, where it worked, and on 6.0 I can not understand

Themes / Apps / Mods Quick Pull down Tile-Accent Colors

If you don't care for Android 12 stock colors, you can change the pastel QS Pulldown Tile colors to more basic colors.
I've added two more options. After flashing these, you have all color options to pick from in settings/Display/Device Theme.
To change the color of the QS tiles you go to settings/display/device theme and select the color you want. The "OFF" color tiles remain gray. You have an option to change settings/notification/volume bar backgrounds to black. Those options are at the top and end in "black theme".
There are two options because the first one has a systemui mod to change some text to black that otherwise is gray. Example, Bluetooth. The "On" or "off" would have been gray.
The second option leaves it gray and can be flashed with anything. The first one has a systemui mod and is more firmware specific.
The SystemUI mod might not be compatible with any other SystemUI Mods you may have installed.
----------------------------------------------------------------------------------------------
Android 12.1
Uploaded 7-8-22
July update
1. All inclusive with systemui mod
https://mega.nz/file/hZAx0JbY#H5JIBLrtM7-5u_canjb0yBiGBbRXzZIOk23uHjnBIAA
2. All inclusive universal without systemui mod.
https://mega.nz/file/xZoEQYZS#F-oPoMZN6kcKsKlABHOctXZKA7tOG2SfWuPv_PApimY
----------------------------------------------------------------------------------------------
Android 12
Uploaded 2-8-22
February update
1. All inclusive with systemui mod
QScolorsUI.zip | by Tulsadiver for Pixel
Download GApps, Roms, Kernels, Themes, Firmware, and more. Free file hosting for all Android developers.
www.androidfilehost.com
2. All inclusive universal without systemui mod.
QScolors.zip | by Tulsadiver for Pixel
Download GApps, Roms, Kernels, Themes, Firmware, and more. Free file hosting for all Android developers.
www.androidfilehost.com
Flash in Magisk App
Blue-Green-orange-purple-cyan-red
Red ffee0000
Orange ffffa000
Green ff228b22
Cyan ff00eeee
Blue ffoo9fff
Purple ff72399d
More deeper colors
Orange ffff7700
Green ff3ddb84
Red ffa50000
Blue ff004bff
Neon colors
Orange. ffff4105
Red fffe0000
Yellow fffdfe02
Green ff0bff01
Blue ff011efe
Purple ff9700fe
-------------------------------------------------
If I helped, hit the Thanks Button!
Feeling generous, send me a beer!
--------------------------------------------------
Thanks!
Any screenshot examples of exactly what colors are changed?
Cares said:
Any screenshot examples of exactly what colors are changed?
Click to expand...
Click to collapse
Flash blue and set device theme to blue but QS doesn't change. What am I missing lol?
What else do you have installed?
I was just thinking about that. I have your magisk mod maker installed. I used the basic/stock in option 1.
I can remove the mod maker module cuz I only used it for navgone option and see you have a standalone for navgone.
wolfeyes30 said:
I was just thinking about that. I have your magisk mod maker installed. I used the basic/stock in option 1.
Click to expand...
Click to collapse
You can't mix and match. If you want more than qs colors, use the adb installer. Color base.
Tulsadiver said:
You can't mix and match. If you want more than qs colors, use the adb installer. Color base.
Click to expand...
Click to collapse
No I just want navgone and blue QS tiles. I'll remove mod maker.
wolfeyes30 said:
No I just want navgone and blue QS tiles. I'll remove mod maker.
Click to expand...
Click to collapse
Then do this. Remove all. Flash blue qs tiles. Reboot. Flash navbar gone. Then, Remove blue qs tiles module.
Tulsadiver said:
Then do this. Remove all. Flash blue qs tiles. Reboot. Flash navbar gone. Then, Remove blue qs tiles module.
Click to expand...
Click to collapse
That remover the device theme option in Display settings.
wolfeyes30 said:
That remover the device theme option in Display settings.
Click to expand...
Click to collapse
Not sure what you mean.
Remove all of my mods in Magisk app and reboot.
Flash QS blue tiles. Reboot.
Flash Navbar gone. Reboot.
Remove QS blue tiles module in Magisk app.
Reboot.
Edit. I see what you mean. I combined them for you. Remove everything and flash this.
Tulsadiver said:
Not sure what you mean.
Remove all of my mods in Magisk app and reboot.
Flash QS blue tiles. Reboot.
Flash Navbar gone. Reboot.
Remove QS blue tiles module in Magisk app.
Reboot.
Edit. I see what you mean. I combined them for you. Remove everything and flash this.
Click to expand...
Click to collapse
I hit the sack last night before you responded lol. Thank you.
Would it be possible (please) to have a 'grey' color version? Now (standard) the OFF tiles are dark grey, I'd like to have light grey color for the ON tiles. I unzipped one of the color modules .... but it's too complicated for me to understand how to do it myself ;-)
foobar66 said:
Would it be possible (please) to have a 'grey' color version? Now (standard) the OFF tiles are dark grey, I'd like to have light grey color for the ON tiles. I unzipped one of the color modules .... but it's too complicated for me to understand how to do it myself ;-)
Click to expand...
Click to collapse
I haven't tested this.
Tulsadiver said:
I haven't tested this.
Click to expand...
Click to collapse
Thanks for the module. I just tested ;-) ... it works, see attached screenshot. I have some of your other mods running from https://forum.xda-developers.com/t/adb-magisk-module-mod-maker.4354189/. Is it possible to combine them both?
Sorry for many requests.
foobar66 said:
Thanks for the module. I just tested ;-) ... it works, see attached screenshot. I have some of your other mods running from https://forum.xda-developers.com/t/adb-magisk-module-mod-maker.4354189/. Is it possible to combine them both?
Sorry for many requests.
Click to expand...
Click to collapse
I'll add that color to the adb installer.
It's possible if you flashed the color base. You would need to pull the vrtheme/system/system_ext/priv-app/SystemUIGoogle/SystemUIGoogle.apk/res/color/QScircleOFF.xml and QScircleON.xml and replace the ones in your mymagisk.zip
I've added two more options that flash all colors. The first one has a systemui mod to change some text to black that otherwise is gray. Example, Bluetooth. The "On" or "off" would have been gray.
The second option leaves it gray and can be flashed with anything. The first one has a systemui mod and is more firmware specific. That is the reason for the second option. It can be flashed with anything.
After flashing these, you have all color options to pick from in settings/Display/Device Theme. The ones at the top that end in "black theme" also change settings-notifications-volume bar backgrounds black.
December update has been uploaded.
Tulsadiver said:
December update has been uploaded.
Click to expand...
Click to collapse
Any chance these are or could be loaded up somewhere else? AFH has been down all day. Thank you for your work.

Categories

Resources