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 = getIntent().getExtras();
    if (extras != null) 
    {
        rowId = extras.getLong(TaskerDBadapter.KEY_ROWID);
    }

When clearly that key has the value 14. If I inspect extras, I see the following:

Bundle[{_id=14, StartDate=3/17/2011, Pattern=Once, Description=Test}]

What gives?

link|improve this question

50% accept rate
can you pull the other items out? – willtate Mar 17 '11 at 21:04
Yes... they are all successfully pulled out and used to populate UI elements. – 333Matt Mar 18 '11 at 15:22
where are you doing the intent.putExtra(TaskerDBadapter.KEY_ROWID, rowId); call? – willtate Mar 18 '11 at 15:23
feedback

1 Answer

up vote 0 down vote accepted

Somewhere the code changed after testing this piece of it previously, and I startedputting it in the bundle as an int, apparently. Found after using extras.getInt(x) evaluated with the proper value.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.