The extras tag has no wiki summary.
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 ...
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"
...
4
votes
3answers
1k views
Why the PendingIntent doesn't send back my custom Extras setup for the Intent?
This questions somehow relates to the question when I was looking to get the extras back in startActivityForResult but now I face another challenge.
I have subscribed to receive ProximityAlerts and I ...
3
votes
3answers
2k views
How can I correctly pass unique extras to a pending intent?
Hey Guys, I am having a problem with the alarmManager and the pending intent with extras that will go along with it. If I set multiple alarms, They will go off however the extras stay the same. I ...
2
votes
1answer
345 views
Shortcut intent extras lost after restart?
My application listens to the android.intent.action.CREATE_SHORTCUT broadcast, in my code I am creating a shortcut which includes a String extra like this:
Intent shortcutIntent = new ...
2
votes
2answers
1k views
How do I write an android JUnit test when my activity relies on extras passed through an Intent?
I am writing an android Junit test for a class that relies on extras passed to it through an Intent. I was able to get the class working properly, but I would still like to know how to write a unit ...
2
votes
3answers
846 views
startActivityForResult and Intents Extras, it seems extras are not pushed back
I have this code:
Intent intent = new Intent();
intent.setAction(Intent.ACTION_PICK);
intent.setData(ContactsContract.Contacts.CONTENT_URI);
intent.putExtra(EXTRA_ONLINE_ID, ...
2
votes
3answers
4k views
Multiple calls to AlarmManager.setRepeating deliver the same Intent/PendingIntent extra values, but I supplied different ones
Solved while writing this question, but posting in case it helps anyone:
I'm setting multiple alarms like this, with different values of id:
AlarmManager alarms = ...
1
vote
1answer
161 views
Android: Changing extras to an intent
I have an app that goes between many different activities. One activity, my main activity, has it's behavior dependent on which activity, within the app, launched the main activity. I thought i ...
1
vote
1answer
215 views
Passing extras from tab activity android
I am having an issue with tabs, and I figure someone will know how this works. Basically I am trying to pass data between tabs in an app, but I am not sure how to do this. I had it set up before where ...
1
vote
2answers
491 views
Android: Starting app from 'recent applications' starts it with the last set of extras used in an intent
Bit of a confusing problem for me here:
I've got a home screen widget which, when clicked, starts my main app Activity with a few extras put in the intent:
Intent start = new Intent(context, ...
1
vote
1answer
3k views
android tab pass intent extras to new tabs activity
I have read through the similar questions but do not see one like this. I have a simple calculator application there are two tabs. Each has their own activity class. I initially wrote this with a ...
0
votes
1answer
29 views
Android - getIntent().getStringExtra using SQL Database crashing app
I am new to programming and my app crashes every time I try to get the data from my extras which are stored in SQL.
public class MainActivity extends ListActivity {
public final static String ...
0
votes
1answer
56 views
putExtras multiple putString not working
I need to pass 2 variables from one activitiy to another activity.
I have the following for the first activity:
@Override
public boolean onContextItemSelected(MenuItem item) {
Bundle ...
0
votes
1answer
52 views
Can you give extras to a Fragment on replace?
I currently have an app that relies heavily on Intents and the extras given to them before starting the activity. The extras are used when calling a webservice which in turn supplies the content that ...
0
votes
1answer
74 views
Service doesn't receive intent / extras
I just can't get what's wrong here.
Activity.java:
...
Intent intent = new Intent(Activity.this, Service.class);
intent.putExtra(Service.KEY_TEST, "123456789");
startService(intent);
...
...
0
votes
3answers
131 views
Is there way to tell IntelliJ IDEA which output folder to use for GWT compiler?
Is there way to tell IntelliJ IDEA which output folder to use for GWT compiler ? I know it copies artifacts to project folder but it doesn't copy extras which I set using "-extra" command line ...
0
votes
0answers
29 views
Retrieving extras in single caller activity from multiple called activities
HexActivity is a screen where ProcessActivity, ProductActivity, and HexSpecsActivity are all called from. Each of them are started with a startActivityForResult(). The user inputs data into each of ...
0
votes
1answer
152 views
Can't get Extras from Intent
I'm trying to get Extras from Intent but it causes an error
08-09 08:01:56.766: ERROR/AndroidRuntime(427): java.lang.RuntimeException: Failure delivering result ResultInfo{who=null, request=15, ...
0
votes
2answers
322 views
Can't get intent extras in android app
I'm trying to put extras (string) in an intent. I use startActivityForResult and onActivityResult to get my extras on the other side.
But I can't get why it doesn't works ! Here's my code :
...
0
votes
3answers
174 views
How to pass Intent Extras?
public class Menus extends Activity {
//set constants for MediaStore to query, and show videos
private final static Uri MEDIA_EXTERNAL_CONTENT_URI = MediaStore.Video.Media.EXTERNAL_CONTENT_URI;
...
0
votes
2answers
140 views
Intent send is not intent received
So I am trying to launch a new activity after the item in a list is selected.... pretty basic based on what I've read. I am also trying to send a value in the extras. So I can select the item in a ...
0
votes
0answers
98 views
How to filter the intent according to his extra data?
I got some activity that have defined intent filter like this:
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category ...
0
votes
5answers
234 views
Passing data between Intents causes app to 'unexpectedly close'
I am trying to transfer an int value between two activities using intents, but my app keeps crashing. When I comment out the transfer of any data and simply use an intent, everything seems to work. I ...
0
votes
1answer
206 views
Update Intent extras between ordered BroadcastReceivers android
I am currently getting the SMS_Received Broadcast from the system and am attempting to change the values in the intent before the other broadcastreceivers get it, (such as the default messaging app)
...
0
votes
2answers
494 views
android: getting same value from Intent extras
I am doing this to create a Intent.
Intent notificationIntent = new Intent(this, Startup.class);
notificationIntent.putExtra("url", contentUrl);
PendingIntent contentIntent = ...
0
votes
0answers
141 views
Android: Passing string containing HTML between activities?
I'm trying to pass a string between 2 activities using an intent extras bundle.
Parent activity:
Intent i = new Intent(Advice.this, AdviceDetail.class);
Bundle bAdvice = new Bundle();
...
0
votes
1answer
194 views
Android extras bundle returning zero instead of actual long value?
This was working before, but now the .getLong method is returning a zero.
public class TaskerDBadapter
{
public static final String KEY_ROWID = "_id";
}
Bundle extras = ...
0
votes
2answers
585 views
Missing Extras in Intent when received from a BroadcastReceiver
I have a broadcast receiver which listens for all outgoing calls. In another activity I make an outgoing call. In my BC I want to be able to determine which calls were created in the activity, so I ...
0
votes
2answers
358 views
android intent extra data retrieval problem
I have a wierd problem. I have the following code:
if (fbIntent.hasExtra("Link")) {
try{
postData[0]= fbIntent.getStringExtra("Link");
} catch (Exception e) ...
0
votes
1answer
71 views
Is there a tutorial that shows how to use tabs and activities to pass values
Is there a way to do this? Is there a way to use a tabhost and activities for each tabs content and pass values via extras. If so can someone post a link how to?
0
votes
2answers
231 views
Intent not extracting extra
I have this code:
protected void onListItemClick(ListView l, View v, int position, long id) {
super.onListItemClick(l, v, position, id);
Log.i(TAG, "The id of the selected note is " + id);
...
0
votes
1answer
2k views
Android: How to catch Intent's Extras if the activity is already running?
I put a notification in the status bar with a PendingIntent (with Extras info) that points to my main app (main activity). When the user clicks the staus bar, the PendingIntent is fired and my app ...