AndroidDeveloperLB

Results 538 issues of AndroidDeveloperLB

1. Can you un-systemize? 2. Can you get a list of apps that are pending to be systemized/un-systemized ? 3. Is there an API instead of terminal commands, that other...

For example, I wanted to remove "YouTube Music", so I typed: debloat -d com.google.android.apps.youtube.music But it failed: ![image](https://user-images.githubusercontent.com/5357526/86520223-b0208500-be4a-11ea-9e65-87bf53945d9c.png) Using a package name is more correct than a name, because a...

So suppose I want to remove YouTube music. The package name is "com.google.android.apps.youtube.music". The folder, as Debloater says, is "/system/product/app/YouTubeMusicPrebuilt". Writing "debloat -h", I can see this: ``` -d [app...

So that each notification that any app shows, will show only an icon instead of heads-up notification ? I've asked about it here: http://stackoverflow.com/q/39685835/878126

If called multiple times, it could stay hidden. I suggest changing to : ``` private void hideOrSetText(TextView tv, String text) { if (text == null || text.equals("")) tv.setVisibility(GONE); else {...

It seems it won't show the title&subtitle if the toolbar is currently showing them, after orientation change. I suggest to make it much shorter, and ditch the field used for...

Also, why can't we use: style="@style/TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse" style="@style/TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse" ? For some reason, it changes the color between the items...

On the sample itself, there are 2 examples that say that the TextView will shrink down to X sp, but it actually doesn't, even though the size is tiny and...

instead of using XML, try to add the view programmatically. The text won't auto-fit. Instead, it will have quite a small font. Here's a small snippet to show the issue:...