Android : Create An Intent To Start Any One Of Those Applications?
Sep 8, 2010
In my application i want to create a shortcut (a button), to another application but i want the user to be able to select which application he wants...
So how do i access a list of all the installed applications and how do i create an intent to start any one of those applications ?
View 1 Replies
Jun 8, 2009
Can you please tell me how can I start an intent to launcher the IM application on android?
View 4 Replies
View Related
Feb 24, 2009
I would like to know, if i can register for an intent or a notification that i could get every time android starts an application.
View 2 Replies
View Related
Aug 11, 2010
I've found a problem that may random FCs on some certain phones.
Here's the code snapshot:
CODE:.............
View 9 Replies
View Related
Jun 3, 2009
is it possible to start a call from the android browser, let's say by clicking a link in an html file or with javascript after a button click? maybe with help of the gears api? i'd appreciate any hints, maybe an example of how to embed the intent in the html-file/in javascript.
View 3 Replies
View Related
Nov 29, 2009
I'm trying to start an activity out of a widget so I can't use the startActivity() function. So I'm trying to create the correct intent but I don't find what I'm missing.
View 2 Replies
View Related
May 6, 2010
I know how to update my own programs, and I know how to open programs using the a predefined Uri (for sms or email for example)
I need to know how I can create an Intent to open MyTracks or any other application that I don't know what intents they listen to.
I got this info from DDMS, but I havn't been succesful in turning this to an Intent I can use. This is taken from when opening MyTracks manually.
CODE:..................
View 2 Replies
View Related
Feb 4, 2010
Is it possible to start an Intent but keep it hidden? For example now to start the intent I am using startActivitity(intent). Suppose the intent is to start a web browser, the webbrowser is shown to user. Is it possible to keep this hidden?
View 3 Replies
View Related
May 14, 2009
How can i open the contact view with a query?
I try this:
CODE:......
I get this error: android.content.ActivityNotFoundException: No Activity found to handle Intent { action=android.intent.action.SEARCH data=content://contacts/ people (has extras) }
Second Question: Is it possible to search also for address and telephone numbers? I have no problems in my own activity, it works fine. But i will start the device contact list search.
View 3 Replies
View Related
Sep 25, 2009
I have the following code in my application...
View 9 Replies
View Related
May 15, 2010
I wanted to know what is the difference between Context.startService(intent) and startService(intent) and does it matter which one is used?
View 1 Replies
View Related
Aug 8, 2009
Having trouble with permissions. The error I get is this: Not allowed to start service Intent { comp= {com.commonsware.android.service/ com.commonsware.android.service.WeatherPlusService} } without permission private to package I installed the WeatherPlus app from Mark Murphy's dev book. I'm trying to call his weather service from a different app. I think I have an issue with permissions, not really sure how they work. I thought that you could just make your own, and then check against it. With that in mind, listed below is the client manifest, followed by the service manifest. I called my permission "mypermission". Code...
View 3 Replies
View Related
May 16, 2010
I'm using Wikitude API 1.1 as an AR viewer in my application. The problem with Wikitude, if I haven't launched the actual Wikitude application since the phone's bootup, I will get a NullPointerException everytime I start my own application.
So I figure if I can start my app first and them check if Wikitude is installed and or running. If it's not installed, go to market n download. If it's not running, then we should run it straight to background so that my app doesn't loose its focuscode...
The part I block commented is the intent to start Wikitude. But I always failed in restricting Wikitude to background. Any help?
View 1 Replies
View Related
Feb 12, 2009
I am getting the below error when ever i am trying to call the bind service. 02-12 20:17:25.486: WARN/ActivityManager(58): Unable to start service Intent { action=oem.android.proj2.IRemoteService }: not found
I have created the Client-Server application. At the Server site i have used the AIDL to impliment the interfaces in my Service class. At Client site i have exposed the AIDL interfaces and have one Activity that mainly do the IPC mechanism , i mean ServiceConnection, bindService and then call the Serivce of the Client site. But i am getting the error i mentioned during the bindService call.
Could you please let me know the steps mainly i have to follow to run the Client -Server Application. For time being i am running the Client .apk first and then the Server .apk, but the server one giving me error.
It would be great if you could let me know what all permission short of thing to take care, as my Client and Server code are placed at different APks, so do i need to import the Client project in my Server Project, if yes then how to impliment that.
View 1 Replies
View Related
Jun 30, 2010
I have found various topics here and elsewhere on creating an intent for sending e-mail and that seems to be pretty straightforward. I'm looking for an intent to just launch any e-mail client the user might have.
Here is the code I've seen for sending an e-mail (posted just for reference, this doesn't serve my needs as I don't want to send a new message):code...
The code above works but isn't flexible in that a user might not be using Gmail but the other built-in e-mail application or a 3rd party e-mail app. I'm looking for an intent that would bring up the chooser in this case so the user can decide which app to launch to read e-mail.
Does anyone know how to accomplish this?
View 2 Replies
View Related
Jul 23, 2010
In the examples, they create Intent as:
Intent intent = new Intent(this, AlarmReceiver.class);
But suppose my AlarmReceiver class is in another app, how do I create this intent?
I've tried with
new Intent("com.app.AlarmReceiver")
but nothing happens.. It was not called..
--Broadcast definition added using the manifest editor on Eclipse:
CODE:.................
View 1 Replies
View Related
Feb 14, 2009
The MediaPlaybackService has exported=true but no intent filters. How do I create an Intent to bind to it?
View 3 Replies
View Related
Nov 14, 2010
I can create new contact with Intent by passing info as extra data with putExtra, is it possible to create Intent with info and if contact is already in phonebook it will be update with new info?
View 1 Replies
View Related
Mar 5, 2010
The first activity in my app needs to load a small amount of data from a text file. Two strings and an integer. Once I load the data, I want to use one of the strings to create an intent, that will launch the next activity.
View 2 Replies
View Related
Jan 16, 2010
Is it possible to show a list of applications (with intent.createChooser) that only show me my twitter apps on my phone (so htc peep (htc hero) or twitdroid). I have tried it with intent.settype("application/twitter") but it doesnt find any apps for twitter and only shows my mail apps.
View 3 Replies
View Related
Nov 14, 2010
Does anybody know, how i can create an intent that opens some videos in youtube app for being played as / in a playlist?
View 1 Replies
View Related
Feb 18, 2010
Long story short, I have a LaunchActivity which is always called by LAUNCHER (i.e. the home screen). It then starts LoginActivity and then closes itself.This is the flow:
User launches app
LaunchActivity starts, starts
LoginActivity and then calls
finish() on itself (At this point
LoginActivity is the only Activity
on the stack)
User press "Home" button, stopping
LoginActivity
User launches the app again When the app is launched for the 2nd time, two things can happen:
LaunchActivity starts, finishes
itself and then STARTS LoginActivity
LaunchActivity starts, finishes
itself and then CREATES
LoginActivity, so there are now two
LoginActivitys on the stack.
(2) seems to happen when I restart Eclipse and the simulator (yeah I know, black magic). Some extra info: I'm not using any start flags and my manifest doesn't have any launchModes defined.
View 2 Replies
View Related
Mar 10, 2010
Is it possible to make a service running in backgroud to be notified when an arbritary activity/application is started and ended by a user? I want to use it to log how often and for how long different applications are used in Android.
View 1 Replies
View Related
Nov 15, 2010
I have an error when i use intent to start activity when i choose a tab
CODE:...
The erroe is Sorry! The Application has stopped unexpectedly, please try again later
View 2 Replies
View Related
Jun 28, 2010
I've a ListActivity with a ListView, onItemClick I start an Intent. Oncreate of this Intent I make a getParent but it's null. if I do this.isChild() it's false.
mPostList.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView<?> parent, View v, int position, long id) {
Intent IntentDiscution = new Intent(parent.getContext(), EcrireMessage.class);
....
IntentDiscution.putExtras(objetbunble);
parentClass.startActivity(IntentDiscution);
}
View 3 Replies
View Related
Jun 9, 2010
I have seen the below log message when navigating to the Account & sync settings screen but I am confused as to how to create an Intent to navigate there.I dont seem to have access to the ManageAccountsSettings for development.I just wanted to create an Intent such as below, but I cant call out ManageAccountsSettings.
View 1 Replies
View Related
Aug 20, 2009
I am getting following message when i try to launch service.Also is there any specific path on file system where we need to place the .apk file which contains my serivce component only.
View 2 Replies
View Related
Dec 10, 2009
I want to create an Android application that is not released to the Android Market for public consumption but only for private use of my company.Is this possible?If so can you post a link to where you can do this?
View 2 Replies
View Related
Jul 8, 2010
I recently purchased a HTC Evo and want to start installing more applications. SNESoid and other emulators would be awsome to have on my phone I just dont know how to go about it. Is there a tutorial out there or maybe someone can explain it really good to me. Thanks in advance.
View 6 Replies
View Related
Jun 24, 2010
Scenario: I turn my phone on and multiple applications are running in the background. I run Advanced Task Killer and close all applications in the background. I respond to a text message and all of a sudden FRING and QIK are running again? Why? Can settings be adjusted manually or do I need to Force Stop in Settings - Applications every time I turn on the phone?
View 1 Replies
View Related