Last-Launcher
Last-Launcher copied to clipboard
Make other apps smaller when not used
From reading the source code it seems that app names only increase, which means even apps you never use will eventually be really big.
The refreshAppSize function should probably make all other apps smaller: https://github.com/SubhamTyagi/Last-Launcher/blob/d39c9b605a21979c0efb36e0e9cf702e7d0f214d/app/src/main/java/io/github/subhamtyagi/lastlauncher/LauncherActivity.java#L276-L286
It should probably make everything else 1 smaller and the chosen app amount_of_apps bigger. Or however it can be ensured that not every app will be huge at some point
which means even apps you never use will eventually be really big.
no, none app size increase other than which is being opened.
It should probably make everything else 1 smaller and the chosen app amount_of_apps bigger. Or however it can be ensured that not every app will be huge at some point.
great idea.
Here i have some idea other than getting UsageStats permission
Sum of size of all apps could be a Constant all time. so when one app size increase other app size decrease.
May i know what is your opinion about this?
https://github.com/SubhamTyagi/Last-Launcher/blob/d39c9b605a21979c0efb36e0e9cf702e7d0f214d/app/src/main/java/io/github/subhamtyagi/lastlauncher/LauncherActivity.java#L277-L279
only given App(passing as activity) size is increasing
Sum of size of all apps could be a Constant all time. so when one app size increase other app size decrease.
Yeah that sounds good