Ho un selettore di intenti che mi permette di scegliere un'immagine dalla galleria o fotocamera in questo modo:Immagine proveniente dalla fotocamera o dalla galleria?
Intent galleryIntent = new Intent(Intent.ACTION_GET_CONTENT,null);
galleryIntent.setType("image/*");
galleryIntent.addCategory(Intent.CATEGORY_OPENABLE);
Intent cameraIntent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
Intent chooser = new Intent(Intent.ACTION_CHOOSER);
chooser.putExtra(Intent.EXTRA_INTENT, galleryIntent);
chooser.putExtra(Intent.EXTRA_TITLE, "title");
Intent[] intentArray = {cameraIntent};
chooser.putExtra(Intent.EXTRA_INITIAL_INTENTS, intentArray);
startActivityForResult(chooser,REQUEST_CODE);
voglio che il mio metodo onActivityResult
per essere come questo:
protected void onActivityResult(int requestCode, int resultCode, Intent data)
{
if(Condition == picture_coming_from_gallery)
{
//my code here
}
else if(condition == picture_coming_from_camera)
{
//another code here
}
}
Qual è la condizione che permette per sapere da quale fonte proviene la mia immagine?
Aggiornato:
Ora sta funzionando ed ecco la soluzione:
protected void onActivityResult(int requestCode, int resultCode, Intent data)
{
if (requestCode == REQUEST_CODE && resultCode == Activity.RESULT_OK)
{
if(data.getData()!=null)
{
try
{
if (bitmap != null)
{
bitmap.recycle();
}
InputStream stream = getContentResolver().openInputStream(data.getData());
bitmap = BitmapFactory.decodeStream(stream);
stream.close();
imageView.setImageBitmap(bitmap);
}
catch (FileNotFoundException e)
{
e.printStackTrace();
}
catch (IOException e)
{
e.printStackTrace();
}
}
else
{
bitmap=(Bitmap) data.getExtras().get("data");
imageView.setImageBitmap(bitmap);
}
super.onActivityResult(requestCode, resultCode, data);
}
}
Grazie per voi aiuto!
Suggerirei di utilizzare un GridView per popolare le azioni e assegnare un OnItemClickListener per catturare l'elemento su cui si fa clic. –
@ChorWaiChun - sta aprendo un 'attività' esterna tramite un' Intento' in modo da non avere alcun controllo sulla visualizzazione delle immagini. – ianhanniballake
@ianhanniballake Ecco perché dovrebbe popolare manualmente il selettore, tramite GridView, mostrato usando Dialog, invece di "aprire un Avtivity esterno" –