I have a ListActivity which should call an edit form, much like in the Notepad tutorial. The difference is, that I don't want to call an ACTION_EDIT
intent, but the EditorActivity-class directly and also send it the ID. Right now I only can figure out how to directly call the intent
startActivity(new Intent(Intent.ACTION_EDIT,ContentUris.withAppendedId(getIntent().getData(), id)));
or to send an ID with a general request for edit
startActivity(new Intent(getBaseContext(),LocationEditorActivity.class));
So how do I match them together now?