how to remove letters from app list - HTC Titan

Hey guys
I don't know how but all of a sudden,when i turned on my phone today i saw letters in top of my apps in the app list. I don't how they got there but i want to remove them. Are there any ways i can remove them from the list except from registry ?
Also how on earth they appeared suddenly ?!

MaziarAmiri said:
Hey guys
I don't know how but all of a sudden,when i turned on my phone today i saw letters in top of my apps in the app list. I don't how they got there but i want to remove them. Are there any ways i can remove them from the list except from registry ?
Also how on earth they appeared suddenly ?!
Click to expand...
Click to collapse
They appear after you have certain number of apps. For now only way is to get rid of the extra apps and bring the number down where the system doesnt have to index letters for you. However I find them very useful to jump to certain alphabet whenever I need to go to that app.

that is the app jumplist and it is automatically activated when you have more than 45 entries in your app list. it can be disabled with a registry editor but interop-unlock is needed for that and it is not available on the titan yet. i don't think there is any alternative method.
however, i find it's a very useful feature that allows you to quickly find your installed apps by letter. why would you want it removed?
edit:
drupad2drupad was faster

Oh I see thanks guys

Related

[REQUEST] [MOD] Remove apps from the 'Share' menu

I've installed tons of apps on my Nexus One (naturally) and am really annoyed to find many of them position themselves in the 'Share' menu on my gallery. There's no way (that I can see) to reorganize or limit this, either.
I typically either use Pixelpipe or Twidroyd to upload from there - I'd like to be able to either
A. pick and choose what does and doesn't show up in this list
OR
B. reorder it so the ones I want to use are closer to the bottom bar.
Currently, Pixelpipe *and* Twidroyd are at the top of the list. This isn't a big deal in portrait mode, but in landscape mode, they're cut off and I can't scroll up to get to them.
I would like such a mod as well!
Not being able to edit it was the main reason I uninstalled twidroid. Cuz I saw no sense why, when in twidroid, twidroid would be the first option under 'share'. That really annoyed me. I mean why whould I need to share a tweet via the 'share' menu in twidroid?
Now...quite happily using twicca which doesn't force itself as the first app under the 'share' settings.
just put a .nomedia file in the folder that has the pics you dont want in the gallery
BloodyWasHere said:
just put a .nomedia file in the folder that has the pics you dont want in the gallery
Click to expand...
Click to collapse
You didn't get the request.
When you open a photo in the gallery app, click on 'More', and then click on 'Share', there are a TON of apps in there, most of which I don't want to use from that menu. The main one that I want to use is Pixelpipe. However, it shows up in the top of this list. That's fine in portrait mode, but the top of the list is cut-off in landscape mode, which is a hassle. I'd like to be able to either reorganize this list or remove some apps from it at my discretion, so that it's not littered with options I'm not going to use.
one way to modify the app's manifest xml and remove the broadcast receiver or other related lines.
in for this...
Billy
I like the fact that the OS allows this type of integration. It's awesome, but an option should be in settings to turn it on or off for each app.
britoso said:
one way to modify the app's manifest xml and remove the broadcast receiver or other related lines.
Click to expand...
Click to collapse
So I'd need to do that for every app that appears in the list?
the orange bandit said:
So I'd need to do that for every app that appears in the list?
Click to expand...
Click to collapse
That's correct. The applications declare in their manifest.xml to which Intents they can respond. They only way to have an application no longer appear in a Share menu item is to have it no longer handle the Intent that is going to be passed, and the only way to do that is to modify the application's manifest.xml.
rpcameron said:
That's correct. The applications declare in their manifest.xml to which Intents they can respond. They only way to have an application no longer appear in a Share menu item is to have it no longer handle the Intent that is going to be passed, and the only way to do that is to modify the application's manifest.xml.
Click to expand...
Click to collapse
Would I have to do this again whenever the app is updated, too?
Also, given that I have root, is there any way to set this up as an app somehow? I could launch the app, which would consist of a checklist of the apps that I have installed on my phone (which was compared against a master list somewhere of apps that declare this intent). I could then simply uncheck the ones that I want removed, and the app would automatically remove the declaration from each app's manifest? Or perhaps a way to monitor the Intent, see which apps are declaring that intent, and then populate the checklist like that?
This has been bugging me for the longest time, it would be great to be able to disable Facebook, Picasa and crap like that which I never use.
the orange bandit said:
Would I have to do this again whenever the app is updated, too?
Also, given that I have root, is there any way to set this up as an app somehow? I could launch the app, which would consist of a checklist of the apps that I have installed on my phone (which was compared against a master list somewhere of apps that declare this intent). I could then simply uncheck the ones that I want removed, and the app would automatically remove the declaration from each app's manifest? Or perhaps a way to monitor the Intent, see which apps are declaring that intent, and then populate the checklist like that?
Click to expand...
Click to collapse
You would need to have root access to modify the APKs of protected and system apps. If you updated the application, it's manifest.xml would have to be changed again, too. I'm not completely certain that if you did this to Market apps if they would be updatable because of signing issues; you could do an adb pull, modify the manifest.xml, then adb push the file back, but if it's modified, I'm not sure that the Package Installer would allow the installation because of the signature.
As far as an application to automate this, I'm not sure if the permissions system on Android allows modification of another app's APK. In theory, the application would scan every APK, examine the manifest.xml of each one, and make a list of which apps respond to which Intents. It could then selectively modify the APKs (and possibly re-zipalign), but I'd rather have a slightly over-populated Share menu than deal with the hassles of broken Market application updates because my installed apps are no longer properly signed.
rpcameron said:
...I'd rather have a slightly over-populated Share menu than deal with the hassles of broken Market application updates because my installed apps are no longer properly signed.
Click to expand...
Click to collapse
Unfortunately, I think I agree with this.
Perhaps it would be easier to figure out a way to re-organize this list so that the apps that I'm actually going to use show up at the bottom (closer to the toolbar) instead of the top? Hypothetically, this would only involve finding the code that populates this list and changing 'descending' to 'ascending', right?
Rather than modifying the apps, wouldn't it be easier to have an exceptions list that the Share menu just ignores? I know that's not a very technical explanation, but what I'm trying to say is a more centralized solution where you cut out programs regardless of whether or not they have made themselves available for the Share menu.
Would be nice to edit this. If i remember correctly, during the Donut days, Cyanogen was experimenting with adding bluetooth share to the gallery app. In his code, he made an error that resulted in the "share" menu to be empty if if bluetooth is turned off. Meaning, Picasa, email, twidryod and everything else won't be there if bluetooth is turned off.
So this means that there was a way to make things disappear from the list.
str4vag said:
Would be nice to edit this. If i remember correctly, during the Donut days, Cyanogen was experimenting with adding bluetooth share to the gallery app. In his code, he made an error that resulted in the "share" menu to be empty if if bluetooth is turned off. Meaning, Picasa, email, twidryod and everything else won't be there if bluetooth is turned off.
So this means that there was a way to make things disappear from the list.
Click to expand...
Click to collapse
Interesting - I'll have to see if I can find out how.
Unfortunately, I couldn't code my way out of a paper sack, so at some point I'm going to have to find someone to actually *do* this for us.
I would love this feature too. I currently have so many choices, I can't even see Pixelpipe on the list. I don't need to send photos to Google Googles.
I appreciate the option to, but I'd love to turn it off by app.

[Q] Gaps on Applications Page

Anyone else know how to get the apps lined up without moving each one manually after un-installing one on the applications pages?
I have gaps on most pages and takes forever to move manually
I couldn't find any other way, it annoys me too.
So is there no fix to this then? Seems like it should do it automatically.
Have you tried 'TouchWiz AppSorter' from the market?
It sorts the apps in the app drawer alphabetically and removes spaces. However the phone does need to be rooted
Thanks, worked a treat
j4d said:
Have you tried 'TouchWiz AppSorter' from the market?
It sorts the apps in the app drawer alphabetically and removes spaces. However the phone does need to be rooted
Click to expand...
Click to collapse
I read about that app, but my phone isn't rooted yet.
j4d said:
Have you tried 'TouchWiz AppSorter' from the market?
It sorts the apps in the app drawer alphabetically and removes spaces. However the phone does need to be rooted
Click to expand...
Click to collapse
Thankyou for this, worked perfectly. This has annoyed me for some time

A few Newbie questions

I have been using my GT7510 for a couple months now and seem to find a new use for it a couple times a week. The more I learn, the more I recognize that I there is a lot of stuff that I don't yet understand. With that statement in mind, I am hopeful that someone can answer a few questions for me.
1 When I explore the apps that I have installed, some are labeled "system apps", some are not. What is the difference? Can I safely delete system apps? If so, how can I tell which apps can be safely deleted. For example, I have a WIFI-only Tab. Will the world come to an end if I get rid of apps that appear to be phone related?
2 Some apps, when viewed in SuperManager have a label that says they are "movable". What does that mean and is there any benefit to moving these apps. If so, where should they me moved? Why should they be kept where they are?
3 As most new users probably do, I have downloaded a bunch of apps, many of which duplicate the features of other apps. I would like to tidy things up a bit and remove redundant apps, especially those which are seldom used. I tried doing that today with the "Videos" app from Google. I have another video player that I prefer. When I attempted to remove this app, I was given the message saying that the app would be replaced with "the factory version". Does anyone know what this means? I did not remove this app. What would happen if I did?
I have a bunch more of these kinds of questions but maybe it is best to stop at this point and address the others in another post. Thanks in advance to anyone who can help out.
Bob
dsafety said:
I have been using my GT7510 for a couple months now and seem to find a new use for it a couple times a week. The more I learn, the more I recognize that I there is a lot of stuff that I don't yet understand. With that statement in mind, I am hopeful that someone can answer a few questions for me.
1 When I explore the apps that I have installed, some are labeled "system apps", some are not. What is the difference? Can I safely delete system apps? If so, how can I tell which apps can be safely deleted. For example, I have a WIFI-only Tab. Will the world come to an end if I get rid of apps that appear to be phone related?
Click to expand...
Click to collapse
System apps are the ones which we can't remove unless we have root access.
Deleting system apps should be done only if you know the exact use of that app.
2 Some apps, when viewed in SuperManager have a label that says they are "movable". What does that mean and is there any benefit to moving these apps. If so, where should they me moved? Why should they be kept where they are?
Click to expand...
Click to collapse
Movable apps means the ones which can be moved to the SD card, so that the phone memory(internal) can be left free. This is useful when you have less internal memory(like phones). But in case of the Tab, we have more than 13 GB as internal memory. so this is not actually useful for us.
3 As most new users probably do, I have downloaded a bunch of apps, many of which duplicate the features of other apps. I would like to tidy things up a bit and remove redundant apps, especially those which are seldom used. I tried doing that today with the "Videos" app from Google. I have another video player that I prefer. When I attempted to remove this app, I was given the message saying that the app would be replaced with "the factory version". Does anyone know what this means? I did not remove this app. What would happen if I did?
Click to expand...
Click to collapse
Videos from Google is a system app. You can't delete it unless you are rooted. Only thing you can do (if you are unrooted) is that you can uninstall the updates which got installed after you got the Tab. So only you are getting the message that it revert back to the factory version.
I have a bunch more of these kinds of questions but maybe it is best to stop at this point and address the others in another post. Thanks in advance to anyone who can help out.
Bob
Click to expand...
Click to collapse

Only one google account ? (4.4.2)

Hi guys,
I have Amlogic S812 streamer Xtreamer Wonder and it's running on 4.4.2 Android.
In the Settings menu there is no possibility (no menu at all) to add another Google account in addition to the one that was created initially. As a result all Google apps such Play Market, Gmail, Drive etc, working with one and only account without ability to switch to another one if needed. It's especially limiting with Paid apps which was bought under different accounts...
I tried to search all over the internet for the similar issue, but surprisingly did not found any ...
All the rest functionality is as usual, I also have root, thanks to the Rooting Guide by C3C076
Any help is very appreciated!
This is how Settings menu looks like :
Unfortunately, this firmware disable this feature.
So, to change google account, you have to use adb tool and remove /data/data/com.android.providers.settings/databases/settings.db file (if box is root) and add another account.
If box isn't root, you have to factory reset this box to add new account
water275 said:
Unfortunately, this firmware disable this feature.
So, to change google account, you have to use adb tool and remove /data/data/com.android.providers.settings/databases/settings.db file (if box is root) and add another account.
If box isn't root, you have to factory reset this box to add new account
Click to expand...
Click to collapse
Thanks for your answer water275, but is what you mean is just removing existing and adding a new one, but there still will be only one account ?
I tried to use few different apps which can manage existing accounts and I had there the option to remove account, but not to add. So in order to remove i think i can use this way, instead of adb. But what about to have multiple accounts? Absolutely impossible ?
What is interesting is that those account management apps allowed me to go into sync options for existing accounts. So it looks like the Xtreamer just hiding required functionality (menus) and not completely removed them. I was thinking in direction of xml files which are responsible for menu layouts, but i have not too much knowledge with them...
You can use Gmail. When you slide left panel in, there's an arrow next to your profile name. When you expand it you will see "Manage accounts" menu option.
Alternatively you can use my simple app (attached) I created for this purpose.
C3C076 said:
You can use Gmail. When you slide left panel in, there's an arrow next to your profile name. When you expand it you will see "Manage accounts" menu option.
Alternatively you can use my simple app (attached) I created for this purpose.
Click to expand...
Click to collapse
You right :good::good::good:
Gmail not allowing to add account guys. There is no such option. If it could be this way then it would be simple
See attachments from Gmail and from C3C076's app :
Launch my app as a normal one.
C3C076 said:
Launch my app as a normal one.
Click to expand...
Click to collapse
Sorry mate, what do you mean ? 2nd and 3rd screenshots is from your app. Where 2nd one is straight after I launch your app and 3rd one if I choose google account and then click on options on the right side.
7eva said:
Sorry mate, what do you mean ? 2nd and 3rd screenshots is from your app. Where 2nd one is straight after I launch your app and 3rd one if I choose google account and then click on options on the right side.
Click to expand...
Click to collapse
Sorry, you are right. I got confused because of launching that app on my phone which runs lollipop. It unfortunately behaves differently on KitKat.
I'll try your app on my android stick in car, there is also 4.4.2 just to compare, but as i said earlier even that menu that your app shows is not available from the usual settings menu, so it seems like Xtreamer just hiding these menus for some reasons.
7eva said:
I'll try your app on my android stick in car, there is also 4.4.2 just to compare, but as i said earlier even that menu that your app shows is not available from the usual settings menu, so it seems like Xtreamer just hiding these menus for some reasons.
Click to expand...
Click to collapse
Yeah. But the screenshot above is a result of launching app on lollipop. Looks like the same call yields different results on KitKat.
C3C076 said:
Yeah. But the screenshot above is a result of launching app on lollipop. Looks like the same call yields different results on KitKat.
Click to expand...
Click to collapse
For some reason on my Android stick in the car your app can't be installed. I have Install and Cancel buttons, but Install not clickable. I'll try similar app from the store later.
Found solution !
The reason is that Xtreamer installed custom Gmail app that is not asking for update and installed as a system app (you can't uninstall it in usual way). This app have no option to add/manage account as I shown on the screenshots above.
Thanks to ROOT i was able to remove that app completely from /system/apps , and installed official Gmail app from the store. In the official app there is full managing functionality for accounts and i was able to add multiple gmails there.
I highly recommend to uninstall pre-installed Drive and Youtube apps too.
In the general settings menu of Android there is still no manage account section, but at least I can get there through Gmail now.
Thanks to everybody for your help !

Question Changing Default Apps

I was wondering if anyone with the Find N can test to see if they can change the default apps and see if it sticks?
I always use Google Messages and Dialler and was hoping I was able to change them as have it stick. I know the issues with the Launcher and I am concerned that it will be the same with these other apps.
On a side note has anyone been able to get Android Auto to work?
What would the dab command be to set the default sms ?
I have found this:-
How to disable any pre-installed system app bloatware on Android without root
If you hate the bloatware or pre-installed apps on your Android smartphone, here's how to disable them even if Android doesn't normally let you.
www.xda-developers.com
Not sure if it will cause damage so perhaps use it with caution!
Hey bud! Just downloaded both Google Messages and Phone and was able to switch it to default. I used adb commands to remove all the bloatware, and it's wayyyy less chinese-y.
Only thing I still can't figure out is how to get Nova Launcher working, as I preferred how that ran before. That said, it's starting to feel way nicer now.
Are they actually sticking though and survive a reboot? Have you tried Android Auto?
How did you get rid of the default messaging app please post ads commands : )
I read in another sad forums that even after deleting the default sms app and installing google sms you will still get the pop up
carrieta17 said:
I read in another sad forums that even after deleting the default sms app and installing google sms you will still get the pop up
Click to expand...
Click to collapse
Which forum did you read that on?
carrieta17 said:
I read in another sad forums that even after deleting the default sms app and installing google sms you will still get the pop up
Click to expand...
Click to collapse
What other forum please?
[GUIDE/ADB] OPPO FIND X System Apps Safe To Uninstall/Disable Without Root
THIS TUTORIAL IS GEARED TOWARDS THOSE THAT HAVE THE VERSION OF THE PHONE WITH CHINESE FIRMWARE,MAY BE USED AS A GENERAL GUIDE FOR OTHER VERSIONS. The subject of app/bloatware removal/disabling has been mentioned in a few threads throughout the...
forum.xda-developers.com
I tried disabling the default sms app and using google messages did not work.. will not let me send texts via any app
So here's the deal, don't remove the default messaging app or replace it with Google messages. It won't work the way you think it will. I was able to remove the default messaging app via adb. You'll be able to set the Google messaging app to default. The issue is, every time you get a text, you'll get a pop-up saying something like "your default messaging app was changed back due to security". It'll do this every time you get a new text.
deweythesecond said:
Hey bud! Just downloaded both Google Messages and Phone and was able to switch it to default. I used adb commands to remove all the bloatware, and it's wayyyy less chinese-y.
Only thing I still can't figure out is how to get Nova Launcher working, as I preferred how that ran before. That said, it's starting to feel way nicer now.
Click to expand...
Click to collapse
Are you getting the pop up giving you the security warning everytime you receive a message?
Yes. I gave up. Using oppos now.
Ah that is not great, does it allow RCS messaging at all? That may be a deal breaker for me!
There IS an option but only for heytap users only...
I received mine and the limitations are too great. The hardware is awesome, but is ruined by horrible software that is locked down so strictly. The messaging and Android Auto issues were the things that made the decision easy.
If this ever gets a International release I will be all over it, but unfortunately I cannot handle the limits.

Categories

Resources