I write this code which open gallery with all folder:
{
Intent intent = new Intent();
intent.setAction(android.content.Intent.ACTION_VIEW);
intent.setType("image/*");
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
}
But I want to open an specific folder with built-in Gallery. I search about this and I found some people posted about this problem in stack overflow but there was no perfect sollution in any post. Can anyone help me?