I\'ve added the intent-filter. And when I tap \"share\" in the Gallery, it will launch my activity.
I found the answer.
Uri imageUri = (Uri) getIntent().getExtras().get(Intent.EXTRA_STREAM);
You can put data in Intent with intent.putExtra(..) and get data with intent.getXyzExtra(..) where xyz dependt on the type: can be String, int, array, etc..
intent.putExtra(..)
intent.getXyzExtra(..)
Check the Intent docs.