Is there a way to know what all extra-keys are applicable to a particular intent? For example if i create an intent,
Intent cropIntent = new Intent("com.android.camera.action.CROP");
then the following putExtra calls are some that are applicable.
cropIntent.putExtra("aspectX", 1);
cropIntent.putExtra("aspectY", 1);
cropIntent.putExtra("outputX", 256);
cropIntent.putExtra("outputY", 256);
So how can I get the list of all the extra-keys that are related to the intent?