An intent is a facility in the Android Operating System for performing late runtime binding.

learn more… | top users | synonyms (2)

53
votes
2answers
34k views

How can I open a URL in Android's web browser from my application?

How to open an URL from code in the built-in web browser rather than within my application ? I tried this : Intent myIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(strURL)); ...
47
votes
2answers
79k views

Using Intent in an Android application to show another activity

In my Android application, I have two activity classes. I have a button on the first one and I want to show the second when it is clicked, but I get an error. Here are the classes: public class ...
36
votes
8answers
38k views

How to send an object from one Android Activity to another using Intents?

How can I pass an object of a custom type from one Activity to another using the putExtra() method of the class Intent?
32
votes
4answers
18k views

Android: Sending an Intent to Browser to open specific URL

I'm just wondering how to fire up an Intent to the phone's browser to Open an specific URL and display it. Can someone please give a hint? Is there also a way to pass coords directly to google maps ...
25
votes
11answers
30k views

How to pass object from one activity to another in Android

I am trying to work on sending an object of my customer class from one Activity and display in another Activity. The code for the customer class: public class Customer { private String ...
24
votes
1answer
10k views

Android Respond To URL in Intent

I want my intent to be launched when the user goes to a certain url: for example, the android market does this with http://market.android.com/ urls. so does youtube. I want mine to do that too. If ...
23
votes
7answers
27k views

Android ACTION_IMAGE_CAPTURE Intent

We are trying to use the native camera app to let the user take a new picture. It works just fine if we leave out the EXTRA_OUTPUT extra and returns the small Bitmap image. However, if we ...
22
votes
3answers
1k views

Android: Is there a universal way to send the MMS on any android devices?

This code works on the plain google devices with native android system. But there is no MMS app in the list on htc sense devices and I don't know about Motorola Blur etc.: final Intent ...
19
votes
3answers
708 views

SMS_RECEIVED not working on Ice Cream Sandwich?

I'm trying to use android.provider.Telephony.SMS_RECEIVED to catch incoming SMS's. I built a simple app, which works on 2.x, but when I try it on my 4.0 emulator or device, it doesn't work. Any ...
17
votes
4answers
1k views

Android launches system settings instead of my app

For some reason whenever I (try to) start my app the phone decides to launch system settings instead of my "main activity". And yes, I am referring to the "Android system settings", and not something ...
17
votes
6answers
15k views

Android - Switch Tabs from within an Activity within a tab

Currently I have a TabHost implemented with 3 tabs each containing a separate activity. My question is how do I switch between tabs from within one of the activities that is located inside the tab ...
17
votes
5answers
8k views

Android Intent for Twitter application

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 ...
16
votes
7answers
16k views

Android: Go back to previous activity

I want to do something simple on android app. How is it possible to go back to a previous activity. What code do I need to go back to previous activity
16
votes
7answers
22k views

Trying to attach a file from SD Card to email

I am trying to launch an Intent to send an email. All of that works, but when I try to actually send the email a couple 'weird' things happen. here is code Intent sendIntent = new ...
15
votes
3answers
6k views

How to launch the market intent in 'Give Feedback' mode on android

I have just written a game for the Android market and would like to remind my customers to leave feeback on the market for the application (especially the demo version.) Is there any way to launch the ...
14
votes
1answer
6k views

More efficient way of updating UI from Service than intents?

I currently have a Service in Android that is a sample VOIP client so it listens out for SIP messages and if it recieves one it starts up an Activity screen with UI components. Then the following SIP ...
14
votes
3answers
14k views

Android multiple email attachments using Intent

I've been working on Android program to send email with an attachment (image file, audio file, etc) using Intent with ACTION_SEND. The program is working when email has a single attachment. I used ...
13
votes
3answers
648 views

Activity stack ordering problem when launching application from Android app installer and from Home screen

For testing purposes only, I am allowing my app APK to be downloaded and installed via a URL. Once downloaded on the phone, it can be launched with the Android app installer which gives the user an ...
13
votes
1answer
1k views

Android: Detect another application has started playing audio

My music application constantly plays music in the background, however I'd like to be able to detect when another application starts playing audio (such as the YouTube app) so I can pause/mute/stop ...
13
votes
3answers
3k views

Android keeps caching my intents Extras, how to declare a pending intent that keeps fresh extras?

A few days ago I was struggling to find a way to use custom intents for my alarms. Although I got clear answer that I have to customize the Intents based on some unique ID eg. setAction() still have ...
13
votes
11answers
37k views

Android YouTube app Play Video Intent

I have created a app where you can download YouTube videos for android. Now, I want it so that if you play a video in the YouTube native app you can download it too. To do this, I need to know the ...
12
votes
3answers
16k views

How to get extra data from intent in android?

How can I send data from one activity (intent) to another? I use this code to send data: Intent i=new Intent(context,SendMessage.class); i.putExtra("id", user.getUserAccountId()+""); ...
12
votes
3answers
15k views

Unable to start Service Intent

I have a service class. I have exported this class to jar and I have embed the jar in my client app. When needed, I call the service class. When I try to do this, I get the following error: Unable ...
12
votes
2answers
7k views

android pending intent notification problem

I have a alarm thing going on in my app and it launches a notification that then when pressed launched an activity. The problem is that when I create more than one alarm then the activity launched ...
12
votes
5answers
12k views

Android intent filter for a particular file extension?

I want to be able to download a file with a particular extension from the 'net, and have it passed to my application to deal with it, but I haven't been able to figure out the intent filter. The ...
11
votes
1answer
16k views

Sending information with Intent.putExtra

I have an array of integers in the activity A: int array[] = {1,2,3}; And i want to send that variable to the activity B, so i create a new intent and use the putExtra method: Intent i = new ...
11
votes
1answer
4k views

Single intent to let user take picture OR pick image from gallery in Android

I'm developing an app for Android 2.1 upwards. I want to enable my users to select a profile picture within my app (I'm not using the contacts framework). The ideal solution would be to fire an ...
10
votes
3answers
472 views

Sending pause to dialer

In a similar vein to Sending Pause and DTMF input in android, I'm trying to send the pause character "," to the dialer. This works on HTC Sense phones and even on the Xoom, but not on "stock ...
10
votes
3answers
733 views

Sending HTML email intents without having <img>'s removed?

Note: I know there are a lot of similar questions on SO. However, I am not trying to inline these images, I just want the html to stay as is. It seems like the normal way to send html emails through ...
10
votes
1answer
2k views

What is a binder callback on Android?

I have been watching the Google I/O presentation by Virgil Dobjanschi on the correct way to implement REST on Android with services and content providers. ...
10
votes
2answers
6k views

Android Notification intent to clear it self

I have read many examples of how to create notification messages. What i wanted to achieve, is because the notification will be executed by a widget, i would like the notification intent when clicked ...
10
votes
1answer
3k views

How do I handle the browser's “share page” intent in android?

I read here ( http://androidlittle.blogspot.com/2009/08/intent-filter-for-share-link.html ) what intent-filter is required to handle the "share link" intent that the android web browser sends. I have ...
9
votes
4answers
1k views

Get result from an activity after finish(); in an Android unit test

I'm currently writing some Android unit tests, and while I've gotten most things to work the way I want, one thing has left me kind of stumped. I have the following code in my activity under test: ...
9
votes
2answers
208 views

Cost of raising an Intent in android

How much performance does it costs to broadcast intents? Is it okay to broadcast multiple per second or are intents expensive?
9
votes
7answers
12k views

Open another application from your own (intent)

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 ...
9
votes
4answers
10k views

How to select and crop an image in android?

Hey, I am currently working on a live wallpaper and I allow the user to select an image which will go behind my effects. Currently I have: Intent i = new Intent(Intent.ACTION_PICK, ...
9
votes
4answers
6k views

How to use an intent to update an activity?

I have a service that is downloading a file. When the download is done, I would like to update my "Downloaded files" list in my Activity, but only if the Activity is running. I do not want the ...
8
votes
1answer
187 views

Intent filter to download attachment from gmail apps on Android

I have android application with intent filter (ACTION_VIEW) to open file and import it into my application. I wish to download file attachment from gmail app into my application. Some of file type ...
8
votes
2answers
527 views

Testing that button starts an Activity with Robolectric

Hi I have the following code: @RunWith(Test9Runner.class) public class MainActivityTest { private MainActivity activity; private Button pressMeButton; @Before public void setUp() ...
8
votes
3answers
7k views

Android Launch an application from another application

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 ...
8
votes
4answers
8k views

How to capture an image and store it with the native Android Camera

I am having a problem capturing an image and storing it from the native camera app. Here is a sample of some of my code. _path = Environment.getExternalStorageDirectory() + ...
8
votes
1answer
3k views

android intent for sdcard ready

I have an application that uses a file on the SD card, the application runs when the phone boots, and it has become apparent that the file cannot be accessed when the program is first run as it starts ...
8
votes
2answers
2k views

Android intent to open user's preferred browser

I've been trying to find out how to create an intent that will open the user's preferred browser without specifying the URL. I know how to open it by giving a specific URL like this: Intent intent = ...
8
votes
3answers
5k views

getExtra from Intent launched from a pendingIntent

I am trying to make some alarms after the user selects something with a time from a list and create a notification for it at the given time. My problem is that the "showname" that a putExtra on my ...
8
votes
3answers
7k views

launch sms application with an intent

hey! I have a question about an intent... I try to launch the sms app... Intent intent = new Intent(Intent.ACTION_MAIN); intent.setType("vnd.android-dir/mms-sms"); int flags = ...
8
votes
3answers
4k views

Is there any way to put extras to Intent from preferences?

Hi i'm launching activity from preferences screen. Activity is shared among three preferences. I wonder if i can set extras for this activity in xml <Preference android:key="action_1" ...
8
votes
3answers
2k views

How to open up a specific SMS in android

Is there a way to open up the Messaging Activity on android with a specific SMS?
7
votes
2answers
545 views

Filter Intent based on custom data

I want to broadcast intent with custom-data and only the receiver that have this custom data should receive this intent, how this could be done ? this how i broadcast the intent : Intent intent = ...
7
votes
6answers
3k views

Android: Clear the back stack

In Android I have some activities, let's say A, B, C. In A I use this code to open B: Intent intent = new Intent(this, B.class); startActivity(intent); In B I use this code to open C: Intent ...
7
votes
3answers
13k views

How can I start an Activity from a non-Activity class?

I have a map view activity that shows a few OverlayItems. In the onTap method of an overlay, I want to trigger a new activity that shows this overlay photo as a fullscreen, for example. When I do ...

1 2 3 4 5 51