The extras tag has no wiki summary.
0
votes
0answers
27 views
How to save a List<HashMap<String,String>> to an SQLite db
I want to save a List<HashMap<String,String>> to my small db. How to achieve it.. I want to use this list in many activities of my app. Is there any other possible way to access this ...
0
votes
1answer
18 views
How to send a List to next Intent
I want to send this 'list' to the next class(HomeActivity).But i was trying to do it by sending extras but couldn't somebody please help me to fix this
code
protected void onPostExecute(final ...
0
votes
0answers
8 views
intents from a tab activity to a normal activity
I have 2 activities.
Activity 1: Do the login function.
This activity is contained by a TabActivity.
Activity 2: Validate if the user is active or inactive.
I have to pass the user from the ...
1
vote
1answer
141 views
Pass arraylist of user defined objects to Intent android
I am trying to pass a structure of arraylist to an intent as follows,
In the calling function i am using
ArrayList<Parliament> s=(ArrayList<Parliament>)msg.obj; ...
0
votes
1answer
27 views
Attach extras to CKAN resources?
Can I attach extras to CKAN resources? I noticed that ckan.model.Resource has an extras property, and so I tried to make a resource using something like this:
resource = {
"package_id": ...
5
votes
1answer
213 views
Android Intent.getStringExtra() returns null
This is how strings are being added to Extras:
Intent i = new Intent();
i.putExtra("Name", edt_name.getText());
i.putExtra("Description", edt_desc.getText());
i.putExtra("Priority", ...
0
votes
1answer
31 views
Android What is Preference.getExtras() used for?
The Preference class has a method called getExtras().
It may or may be not related to the Preference intent, but the Extras can be get and put using the intent directly.
There is no method ...
0
votes
2answers
76 views
Getting extras from an intent in Android
I have an issue that is driving me crazy, I want to get "n" string values from a bundle, somehow avd crashes when I click on "send button".
Activity 1
public void enviar(View view){
Intent ...
1
vote
1answer
192 views
Android: How to get extras from Activity to Service to a Second Activity
I am trying to send extras through an intent to a service which then opens an activity that should receive the intent's extras. The extras appear to be null in the second activity when I look for ...
0
votes
0answers
32 views
Bundle extras vs setter vs static field
Quite probably this was asked before, but failed to find an appropriate answer. If so, after throwing tomatoes please point me to the correct reading.
I implemented a music player that is called from ...
0
votes
2answers
426 views
java.lang.NullPointerException on Bundle extras = data.getExtras();
I'm trying to capture image and save it in gallery. For that in onCreate my code
Intent intent = new Intent("android.media.action.IMAGE_CAPTURE");
File photo = new ...
0
votes
1answer
55 views
Passing Extras and screen rotation
This kind of questions appear periodically. Sorry if this has been covered before, but I'm a newbie and couldn't find the appropriate answer. It deals with the correct implementation of communication ...
0
votes
2answers
92 views
Android: NullPointerException when using Extras in Intents
Please I get a NullPoiterException when I try to get the extras form the intent.
The error is thrown exactly when I call
int posizione2 ...
0
votes
1answer
31 views
Does putExtras() unarchive and then archive the extras again?
I'm working on an android application project, and I have a scenario where I send data between activities in the following order:
Activity1 sends two extras via the putExtra() method.
Activity2 ...
0
votes
4answers
278 views
Android intent.extras returns null
I am trying to pass 3 strings to a new activity. By debugging I have discovered that my variables are not null when I put them in extras but when I try to get them they are null
...
0
votes
1answer
160 views
Passing the same Intent extra multiple times, and somehow the extras don't match
I have an app that is set up to display an entry from a database as a notification when it receives a broadcast. The _id for that database entry is passed as an extra for the broadcast's intent. When ...
0
votes
1answer
103 views
Intent extras only work on some devices
In my app I send some intent extras from one activity to another. But some users report back that these data are always zero - even though I can see the values are alright in the sending activity.
...
1
vote
2answers
310 views
Android intent extras values casting error: double casted to integer
I have such a problem while sending intent with extras: values put as double are converted to integer, and cannot be read as double when receiving the intent. The code is below.
creation of the ...
0
votes
1answer
49 views
Is there any plugin for MODX for managing the item tree in a wordpress style? with pagination and etc?
Some clients complain about how messy it is to manage a site with lots of blog posts thru the item tree
1
vote
1answer
833 views
Broadcast receiver for sent messages
I'm developing an app that sends sms and I'able to get a response to know if the sms was sent (or not).
But since I want to identify which sms was sent (by receiver and text) I add these informations ...
0
votes
2answers
123 views
Android: How can I tell an activity to do something from a service?
I have a main activity that launches:
1.- A network prone thread that writes into a socket.
2.- A network prone service that is supposed to read from a socket.
So far I'm done with 1. but I want the ...
0
votes
1answer
564 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 ...
1
vote
1answer
812 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 ...
1
vote
2answers
940 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
868 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);
...
...
1
vote
3answers
716 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
1answer
339 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
3answers
673 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
848 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
3answers
394 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 ...
1
vote
1answer
677 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 ...
2
votes
0answers
262 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
596 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
2answers
555 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
2k 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 = ...
1
vote
1answer
433 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 ...
0
votes
0answers
243 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();
...
2
votes
1answer
826 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 ...
0
votes
1answer
309 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 = ...
1
vote
2answers
1k 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 ...
2
votes
3answers
2k 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, ...
0
votes
2answers
557 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
81 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?
2
votes
1answer
6k 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 ...
4
votes
3answers
7k 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 ...
5
votes
2answers
3k 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 ...
0
votes
2answers
367 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);
...
25
votes
2answers
7k 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 ...
5
votes
3answers
2k 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 ...
6
votes
5answers
2k 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, ...



