Android :: How To Launch Another Phone App From Current App?
Mar 8, 2010
I have developed 2 android applications and what i want is a way to launch my android application no2 from say my android application no 1 can anyone plz guide me with this. And tell me the extact intent i need to fire.
View 2 Replies
Nov 24, 2010
I need to launch a service running in the background,that should record what's on the current screen for say about 10 sec.. i should able to save it in a file or on any storage device and later i should able to retrieve it also..
View 2 Replies
View Related
Aug 27, 2010
My app is comprised of a set of reusable Activities that other apps can reuse. For various reasons, I would like my Activities to be launched in context of the invoking Activity's process, instead of always being launched in my Activity's process (default behavior on Android). How can I achieve this?
View 1 Replies
View Related
May 13, 2010
The default behavior of an activity when BACK softkey is pressed is, GO BACK TO PREVIOUS ACTIVITY. If some the same activity is waiting for some response from server or some data updation is going on and then press BACK, I want to wait on the same screen till the current task is completely processed and then move out to the previous activity.
You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscribe@googlegroups.com For more options
View 12 Replies
View Related
Feb 24, 2010
What is the best way to launch an app and calculate its launch time in android(if it can be done with some code,then its better)
View 2 Replies
View Related
Oct 25, 2010
Say, an android app is installed on a device. And it should automatically launch immediately after receiving a particular SMS. Is it possible?
View 5 Replies
View Related
Jun 2, 2010
Can anybody please guide me regarding how to launch my android application from the android browser?
View 8 Replies
View Related
May 5, 2009
How can I launch an android activity, defined with.* public class MyActivity extends Activity {...}.from a Java method ?
View 6 Replies
View Related
May 7, 2010
Am I the only one who lurks on the Incredible boards whenever I visit AF? I figured the Incredible is in a way a cousin of the EVO (smaller, no 4G) so I'm trying to get at least a little bit of a heads up of what to expect when the EVO launches. I'm also new to Android so I'm picking up little tidbits in there as well. Call me crazy but it helps me cope with our wait.
View 32 Replies
View Related
Jun 19, 2010
I have searched and searched for help and am not finding anything. Well i take that back I have found countless guides on how to do it. tried many of them, didn't work, deleted everything, tried another , didn't work so now I am asking for help.I am trying to do screen captures using the SDK and eclipse and whatever else the guides say to download. Whenever i double click the ddms file a command box flashes up on the screen for a split second and thats it . Can't go any further if the commab box won't stay up. I think a windows window is supposed to pop up after that so I can choose my phone.
View 3 Replies
View Related
Nov 16, 2010
How can I launch a facebook app from my app in android?
View 2 Replies
View Related
Jul 26, 2010
How do I get the current location of the phone? I'm not talking about registering for location updates on the location manager and waiting for it to update upon change. I'm talking about get the current position.
View 4 Replies
View Related
Jul 16, 2010
How to get GEO Coordinates ( latitude & longitude ) without using GPS in android ?
Any Suggestion ?
View 1 Replies
View Related
Oct 6, 2010
I want to launch an installed package from my Android application. I assume that it is possible using intents, but I didn't find a way of doing it. Does anyone have a link, where to find the information?
View 2 Replies
View Related
Apr 23, 2009
How can I programatically launch Browser in my android application? And how can I do that with it opens an URL instead of home page?
View 2 Replies
View Related
Jun 14, 2010
I would like to launch some applications, like the Calculator, the alarm clock, the notepad, the calendar, the camcorder, the camera, the dialer, etc, from my application. Is there an easy way to do that? Is there any place with a list of what are the intent names to launch them?
View 6 Replies
View Related
Sep 27, 2009
1. i have a service that will launch an activity. How to make the activity launched like a phone call? i mean when the phone screen is locked, it will awaken.
2. how to start a service right after downloaded and installed from android market?
View 8 Replies
View Related
Nov 21, 2009
I would like to launch an activity at the end of a phone call. Could not find any reference to that. How can I do it?
View 1 Replies
View Related
Nov 24, 2010
I want to know to launch a satellite application using Intent, i knew how to launch the map application using Intent, but i want to display satellite view rather than map view, my code is uri = Uri.parse("geo:0,0?q=" + VALUE_baraddress1[0] + ", "
+ VALUE_baraddress2[0] + ", "
+ VALUE_baraddress3[0]);
Log.v(TAG, VALUE_baraddress1[0] + ", "
+ VALUE_baraddress2[0] + ", "
+ VALUE_baraddress3[0]);
startActivity(new Intent(Intent.ACTION_VIEW, uri));
View 1 Replies
View Related
Aug 3, 2010
I want to launch an android application from a remote server, i can see that in J2ME there is a class called PushRegistry, this class resolve this problem in ME but in android I cant do it.
View 2 Replies
View Related
Mar 19, 2010
Is there a way to find the email address of the user of the phone? I have a software that requires password. However, sometimes people forget their password and want a reset. I think the best is to send an email to the user of the phone, instead of prompting the email address at the time the forget their password. Because who knows, it could be one of their friends that picks up the phone and likes to reset the password as a prank.
View 2 Replies
View Related
Sep 23, 2010
Please Help me for creating an application for getting the current location of the android phone.
View 2 Replies
View Related
Nov 17, 2010
I am trying to save some values in the onSaveInstanceState(Bundle) method of my activty by following the example here: How do I save an Android application's state?
But it doesnt seem to load it from the Oncreate(). the bundle object is always null but whenever i call another activity, it does indeed go into the onSaveInstanceState method to save my values.
Now i read that question i just posted and someone noted how they could not get it to work in an emulator? unfortunately that is all im working on. On an emulator and cant test the app on the device as i have no device available to me right now And the web services i am interacting with are in a local VM on my work machine that cannot be accesses remotely at the moment.
My question is, is it true that saved bundles dont work on emulators? I also noticed how when i do dismiss or bring up a new activity , the activity calles onPause and then onStop. when i bring back the same activty, it goes straight to onCreate?
now according to the docs here http://developer.android.com/guide/topics/fundamentals.html#actlife That is correct in terms of what the lifecycle diagram shows but if you read below that diagram on the onStop() section it says the next step it goes into is either onRestart() or onDestroy()? no mention of onCreate? Type on the docs?
Anyways here is my onSaveInstanceState() and onCreate() both in the same activity: code...
View 1 Replies
View Related
Feb 17, 2010
Is there any way (e.g. with the command-line) I can upload an APK to an android phone wirelessly (wifi or Bluetooth) and launch it on the phone from a desktop machine?
I can do this things with abd from the command line when a USB cable is attached but I'd like to know if I can do this without having to mess around with cables.
View 2 Replies
View Related
Apr 3, 2010
I am able to launch contact application from the following way. I am also able to show Name and only one Phone number. My problem is 1- How can I show multiple phone number [like Home, Mobile, Work etc] when I am launching contact application. How can I do that? 2- In Contact application there is one option *More*, which is an expandable list. When I click that it open with other many fields like Notes, Website, Nicknam etc. How can I fill those fields while launching the Contact application? Code...
View 8 Replies
View Related
Apr 7, 2010
I have just created and iPhone web app, which has some x264 (mp4) video files on it. When I link directly to the file on the iPhone and the user taps the link, the video player is loaded and the video starts playing. Using the app on an Android phone causes the browser to download the video instead of just playing it. Is there a way to force a video player to just boot up and play the video not download it?
View 1 Replies
View Related
May 6, 2010
I want to find the current Address using current latitude and current longitude or phone number in android application.
View 2 Replies
View Related
Aug 18, 2010
I am new to the android programming environment. I am currently working on a project which deals with the user's phone battery level.I am showing the current battery level left on the phone.now i want to display the amount of duration of "idle time, talk time, video playback, audio playback and web surfing" that can be done based on the current battery level. What kind of approach shall i follow.(or) What available API shall i use to get those.
View 2 Replies
View Related
Oct 30, 2009
I'll number these questions to make answering easier. 1) I'm only looking at GSM phones, I'm thinking about buying the hero on ebay next week. I'm wondering if I should wait for the GSM moto droid or a GSM htc passion. Or just get the hero now. The benifits of waiting for me personally is faster hardware, and better screen/resolution. The downfalls of waiting is I could be waiting a long time for a GSM version of those phones. 2) The biggest thing that concerns me is about buying the hero is performance. I have a iphone 2g and what pisses me off about it is the performance, and that it has no multitasking. If I get the hero I don't want the performance to bother me. I have no issues if I need taskiller to close a few apps every now and then to keep the performance good. I'd like to know if performance is a real problem, or just a minor annoyance. 3) Is the "jump to letter" feature in the music player? for example can I jump to the music artists that begin with Y, instead of scrolling from the top all the way down? 4) Is there a button to show your currently running apps? or your most recent apps? If so, which is it? running or recent? Can you launch apps from that screen? 5) Is the warranty on the European GSM hero valid in the United States? Is the warranty card that comes with the phone used for anything? do you need it to have a warranty on your phone? What does it say on it?
View 2 Replies
View Related
Jun 14, 2013
I can't seem to launch Google Now on my phone. I used to have it on my phone. It used to show up when I launched the Google search app and by pressing the Menu button but now somehow it doesn't show up whatsoever.
My phone has 4.1.2 when I bought it so I think Google Now should probably be preinstalled. And also, is it only available in select countries?
View 4 Replies
View Related