HTC Hero :: How To Enable Map "Complete Action Using" Setting?
May 6, 2010
In my Hero phone when I open a browser and search in the google local I get an option to show map. When I click on show map it should open "Complete Action Using" to ask if I want to open the map in the browser OR Google map. But now I don't get that option and it opens the map in browser by default. To solve it I already tried:
1. Reset "Launch by default" option in Menu > Settings > Applications > Manage applications.
2. Also tried Reset Phone factory Settings.Can you please help me in enabling the setting to get "Complete Action Using" window before it opens the map?
View 2 Replies
Jun 21, 2010
I have 2 apps and both integrate a package containing an activity. My problem is that when I launch any one app, and when it calls the activity inside the package, it shows me a dialog:
Complete action using:
App1
App2
I want to eliminate this dialog, so it just launches the activity from its own integrated package.Currently, my AndroidManifest.xml contains for the package activity:
<intent-filter>
<action android:name="com.example.test.TestActivity" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
View 1 Replies
View Related
Feb 6, 2013
I'm on Note 2 with Android 4.1.2 and every time I click on a link in the stock browser (specially on youtube) the "Complete action using" keeps popping up.
I do selection "always" not to mention.
GT-N7100
View 3 Replies
View Related
Jul 16, 2009
How can I register my app to show in 'complete action using dialog'?
View 2 Replies
View Related
Sep 1, 2010
When I press on the home button lightly a "complete action using" option comes up and tells me to choose either A.HOME or B. TwLauncher. What does this mean? And why is it showing up? I haven't noticed this until today--I now have to choose one when I press on the home button.
View 7 Replies
View Related
Nov 15, 2010
I am a newcomer to Android having recently purchased a Samsung Galaxy S I9000M (my first smartphone ever), marketed in Canada under the name Vibrant. It is running Android 2.1 and I have not yet rooted, unlocked or otherwise modified the phone.
I have downloaded and installed three browsers in addition to the stock Internet browser: Dolphin, Opera Mini and Opera Mobile.
After installing Opera Mobile I started having the following annoying problem:
When I was in the stock browser, every time I clicked a link the "Complete action using" window would pop up prompting me to select which browser I want to use. The choices were: Dolphin, Internet and Opera Mini (curiously, no Opera Mobile). I would check the "Use by default for this action" box and proceed to click "Internet" (the stock browser), which should have made the stock browser my default one. However, next time I clicked a link it would happen all over again.
This happened only in the stock browser, never in Dolphin or one of the Operas.
It's like my Android kept forgetting my choice of default browser although in the settings for the stock browser it said it was default.
I also noticed that after the installation of Opera Mobile the delay between clicking a link in any browser and the browser's reaction became noticeably longer (up to a second).
View 1 Replies
View Related
Feb 2, 2014
The 'complete action using' box does not come up when playing a video, even though my video player is not set as default app for playing videos. I have tried clearing defaults.
View 7 Replies
View Related
Sep 26, 2012
Is it possible to enable/disable action bar icons? The scenario is that on the action bar there are two search icons, but they do different jobs, one searches the contents of the app while the other filters the listview (searches the table of contents only).
So if a user only wanted to use only one search method, is it possible to make an option in the settings on the app to enable/disable action bar icons?
View 4 Replies
View Related
Jul 11, 2009
Can you please tell me where in the android source code which invokes the "Complete Action Using" dialog? i.e. when I start an Intent, Android pops up a "Complete Action Using" dialog.
View 2 Replies
View Related
Sep 16, 2010
I am a new member and a relatively new owner of an X10i. Overall I am happy with the phone but I am hoping some can answer a question. When I press the home button (middle one) I get a prompt to select to 'Complete Action using Home or Timescape' This is quite annoying. I want the default action to be Home (not Timescape) but despite ticking the box in the prompt it still pops up this box.
View 3 Replies
View Related
Jan 11, 2010
I'm trying to catch an action like ACTION_HEADSET_PLUG. But I think it might be too much to set this action on the manifest file.
How could I register a listener for this action? I only need to care about it when my application is running not all the time as I think it would happen when registering it under the manifest file...
View 4 Replies
View Related
Mar 10, 2009
I'm playing with the alternative Home app that comes with the SDK.
I can set this as default for 'Home' action.
I can unset this by -->Setting->Manage Application->My Alternative Home-> "clear defaults"
Question:
How to do this "clear defaults" by code?
I've browsed the forums but cannot find an answer.
View 2 Replies
View Related
Jul 19, 2010
I was using the facebook app and clicked a youtube video link and decided to make youtube the default app to launch for this specific action. However, I later decided that I want it to launch the link in a browser (so I can read comments) instead of playing instantly after clicking the link.
I tried "Clear defaults" under settings>applications>manage applications but there is no settings for youtube. I tried to clear defaults for facebook and my browser, and tried reinstalling the facebook app but no luck.
View 1 Replies
View Related
May 3, 2009
how to enable the GPS setting automatic? Seems the "Toggle Settings" app can handle it, but I didn't find out any solutions for it yet.
View 3 Replies
View Related
Jun 17, 2010
I am wanting to programmaticaly set the state of the enable flag for WiFi Hotspot Tethering in Froyo. Something like this:
boolean isEnabled = Settings.System.getInt(context.getContentResolver(),
Settings.System.SOME_WIFI_TETHER_FLAG, 0) == 1;
// toggle HOTSPOT mode
Settings.System.putInt(context.getContentResolver(),
Settings.System.SOME_WIFI_TETHER_FLAG_ON, isEnabled ? 0 : 1);
// Post an intent to reload
Intent intent = new Intent(Intent.SOME_WIFI_TETHER_FLAG_CHANGED);
intent.putExtra("state", !isEnabled);
sendBroadcast(intent);
Is there a programmatic flag for turning off wifi hotspot mode in 2.2 from Settings.System class?
View 3 Replies
View Related
Jan 17, 2010
I recently switched from a Treo to the Moment. Generally quite pleased, but the Moxier email client doesn't seem to be displaying html links at all.
Exchange mail on the Treo still shows links, so unlike some of the other posts, the problem is not with the corporate exchange server stripping out html.
Is there a setting in Moxier to enable links within email messages?
View 2 Replies
View Related
Nov 3, 2010
I want to show some notification when android phone is connected to system. I implemented BroadcastReceiver for listening to event android.intent.action.ACTION_UMS_CONNECTED in my application But it is not working. Is it possible to capture this event.
View 3 Replies
View Related
Oct 31, 2010
I thought that Action was preeminent during intent resolution and if the intent had the same action as the intent filter, it would be considered a match regardless of data, if the filter did not specify anything. So I was very surprised to find that supplying action+data where filter had only action, causes it to fail. In the code below, if you comment out line 47 so that data is *not* sent, only then it resolves correctly. To get it to work with the data (an id that is simply a String), what mime type should I specify in the intent filter?
View 11 Replies
View Related
Sep 5, 2009
Last night I updated the ROM on my Orange UK HTC hero with the hope that it would take away the lagginess and make it a much more usable phone. My knowledge of android as of last night was; I had no clue what rooted/unrooted meant(I am still not totally sure) or what a ROM was or did. I will go into the method I used further down. Firstly, the results are amazing! The phone runs faster now with all my applications open than it did before after using task killer. When I say all applications I mean Google Maps, Skymap, places directory, robodefense, youtube, beebplayer, camera, pktauctions and many more, all open and still no lag on the phone. The process to upgrade the Hero is in two parts both of which are demonstrated in two videos from unlock.com. Part 1 The first video (linked below) is relatively simple, the only pitfall I found was with the second file you need to download. It is insinuated that you need to unzip/extract the file on your pc before you copy it to your phone's sd card. This is not the case, by extract he means just copy and paste the required file from out of the zip and onto your sd. Code...
View 49 Replies
View Related
May 7, 2010
I am using My Backup Pro to backup my phone. While it does a good job it only does a selective backup. Is there a program that I can use on my stock phone to do a more comprehensive backup? Maybe a mirror backup like Nandroid?
View 7 Replies
View Related
Aug 19, 2009
Someone has made a YouTube video of what appears to be the new software update
http://www.youtube.com/watch?v=GYV9NNoI8Hc
View 9 Replies
View Related
Sep 4, 2009
I plan on buying an HTC Hero when they release it next month for Sprint. Is there a way that I can make a complete backup image of the phone in it's original state before I inevitably screw something up on it?
View 13 Replies
View Related
Oct 11, 2009
In my HTC Favorite Contacts widget, I can't change the default action (like: SMS, Email, or Call). I only have the option to call.
I'm know that the Euro version had the option to change your default contact method for each favorite contact...Did sprint Disable this option on their hero? Anyone else having this problem? Lemme know if you find a way around it!
View 6 Replies
View Related
Feb 10, 2010
I've had my Hero about a week now and one thing that I've found annoying is that when you go into the phone application the default action for the call button is to redail the last number. I have inadvertantly made several (very short) calls by accidentally brushing the call button (or double click the physical on) before I have made any selection in the list.
Is there a way to disable this feature. E.g I wish to physically select or enter a number before the "call" button will place a call.
I did find a reference on this forum to "Not Call Log" which switched away from the screen after a call. I just want something that prevents me miss dialling in the first place.
View 2 Replies
View Related
Nov 22, 2010
I was running a CsRoM root, and then tried flashing the Virtuous rom and it kept saying "action aborted" every time i tried flashing virtuous, so i rebooted my phone and now it just stays at "HTC" screen on boot up, I have tried taking out the sd card but that didn't work, is there any fix or a way to manually reset my phone to get it working again?
View 2 Replies
View Related
Oct 27, 2009
I just go hero and I went to the Pop3 setting and started to insert my microsoft pop3 account setting in the fields as prompted. The password was not correct so it would not pull in my emails.I can't seem to find out how to go back into my pop3 settings since the HTC Hero email application will not let me view my previous settings to make changes.There must be a way, I am just not seeing it.Please help me with the correct procedure.It tells me to select my email account from the drop down screen in my created email account, so, I select the email address that it shows that I created.
View 2 Replies
View Related
May 27, 2010
Is there anyway off changing your scene to say 'car' and it turning on GPS, Bluetooth and then going back to a scene called home and it turns them off and turns wifi on (I've tried that but it doesn't seem to work) or an app that can do this (with out GPS enabled) for me.
I'm on Android v1.5 default ROM
View 8 Replies
View Related
Aug 4, 2010
You can now force roaming on the Hero: Mod to enable forced roaming - xda-developers
The current mod is for Fresh 2.3.3, but this can be ported over to other ROMs.
View 2 Replies
View Related
Sep 10, 2009
In the calendar app, it syncs with all my google calendars except the google sports calendars for some reason. They aren't even displayed in the menu. Is there any way to enable showing the sports calendars on android's calendar?
View 2 Replies
View Related
Apr 24, 2010
Is there a simple way to enable / disable vibrate for the phone / notifications? I tried using the volume rocker, going to vibrate there. That works for the ringers, but not notifications. I mainly want to set / unset vibrate for gmail and Google Voice. I have tried various 3rd party apps like Volume Control / Audio Manager, but nothing seems to work consistently.
View 2 Replies
View Related