hi there, I am trying to pass on a videoclip from one activity to another by calling an intent: What I would like to do is to pass on the clicked video (the video's uri) and display it in a videoview within the novel activity. But I am a bit stuck and don't know what I should do...
This is what I got so far for calling the intent and passing on the extra: String uri = videocursor.getString(0); //uri holds the currently selected/clicked video uri Intent editorIntent = new Intent(EditGalleryView.this, EditorView.class); editorIntent.putExtra(???); startActivity(editorIntent); My problem is what I should to pass on the uri as Extra and how I can retrieve that in the other activity... If someone could help me out here, that would be fantastic, thank you very much in advance -- You received this message because you are subscribed to the Google Groups "Android Beginners" group. NEW! Try asking and tagging your question on Stack Overflow at http://stackoverflow.com/questions/tagged/android To unsubscribe from this group, send email to android-beginners+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en