I\'m trying to pass a URI-Object to my Intent in order to use that URI in another activity...
How do I pass a URI ?
private Uri imageUri; .... Intent
In Intent, you can directly put Uri. You don't need to convert the Uri to string and convert back again to Uri.
Look at this simple approach.
// put uri to intent intent.setData(imageUri);
And to get Uri back from intent:
// Get Uri from Intent Uri imageUri=getIntent().getData();