Tagged Questions

0
votes
1answer
24 views

Problem with system intents

I have a program that has a broadcast receiver that listens for Phone_State and then sends a user defined intent. Well, my problem is that the system also sends out an intent (the one that I am trying …
0
votes
3answers
31 views

How do I bypass the “Complete Action Using …”

Hey guys, I have a question related to choosing an application programmatically when shown the dialog "Complete Action Using" in Android. An example would be as follow: In my code, I have this …
0
votes
0answers
11 views

filp intent while calling start activity

How can i flip intent Intent mainIntent = new Intent(HomeBrowse.this,SearchResults.class); startActivity(mainIntent); I want to flip two views using intent.
0
votes
0answers
20 views

code efficiency Intent’s putExtra object

My question is related to code efficiency putting large objects in Intent's putExtra object and then start activity is better approach or any other way to attach large objects with Intent and populate …
0
votes
0answers
6 views

Start system activity picker even when a default one is set

Hi, Is there a way to show the system activity picker even when a default activity for the intent is set? I'm aware there is an ACTION_CHOOSER, but it does not give user a second chance to change the …
0
votes
1answer
58 views

Android camera intents

Roger, I see that you've been tinkering with camera intents. I'm having real trouble just getting a simple app to tell me when the camera button has been pressed. Do you have some code to help me on …
0
votes
1answer
25 views

Email Intent not showing the chooser.

I'm using the following to initiate the sending of an email: Intent i = new Intent(Intent.ACTION_SEND); i.setType("message/rfc882"); i.putExtra(Intent.EXTRA_EMAIL, new String[]{s}); …
0
votes
0answers
19 views

android : how does the OS chose a component implementation when multiple implementation respond to the same intent ?

I have a free and a premium version of the same app (almost same code, same classes with "if"s here and there, different packages in the manifest, same process name in the manifest). The main activity …
1
vote
2answers
68 views

How do I launch the email app with the “to” field pre-filled?

I tried this code which I found here: Intent intent = new Intent(Intent.ACTION_SENDTO, Uri.fromParts("mailto", "testemail@gmail.com", null)); startActivity(intent); But I get a message on the …
0
votes
2answers
66 views

Android Intent-filter working for Magic, but no Hero, what could be the problem?

Hi Im working on an application that got an acivity that is set to have intentfilter <intent-filter> <action android:name="android.intent.action.RINGTONE_PICKER"/> …
0
votes
1answer
86 views

Android: Callback for an application launch

Is there a way I can be notified of an application launch and termination in Android? I mean, more like subscribing to the Activity Manager and then determining which applications have been started …
0
votes
1answer
79 views

Overriding the Activity/Task behavior in Android

I'm writing a simple Android app, and I'd like better control over the navigation/relationship between the activities. I don't want my activities to act like android activities...I don't want them to …
0
votes
2answers
63 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 …
0
votes
1answer
139 views

Android “single top” launch mode and onNewIntent method

I read in the Android documentation that by setting my Activity's launchMode property to singleTop OR by adding the FLAG_ACTIVITY_SINGLE_TOP flag to my Intent, that calling startActivity(intent) would …
0
votes
1answer
51 views

Receiving MP3 play actions in a BroadcastReceiver in Android

I am trying to build an Android Service that should get notified when the user starts playing an MP3. I checked LogCat when I start playing a song and saw that the following Intent is logged: Intent …

1 2 3 next
15 30 50 per page