I am using default image picker to pick photos. I installed dropbox app in my phone.So it shows up together with gallery and photo.Is there way to hide dropbox showing in image picker?I also tried this but it doesn't work for my app.
![Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("image/*");
intent.putExtra(Intent.EXTRA_LOCAL_ONLY, true);
Intent chooser = Intent.createChooser(intent, "Choose a Picture");
((Activity) context).startActivityForResult(chooser, photoGalleryCode);]
android image picker showing dropbox
Min