first manner:
Intent intent = new Intent();
intent.setType( "image/*" );
intent.setAction( Intent.ACTION_GET_CONTENT );
startActivityForResult( Intent.createChooser( intent , "select picture" ) , REQUEST_LOAD_IMAGE );
second manner:
Intent intent = new Intent( Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI );
startActivityForResult( intent , REQUEST_LOAD_IMAGE );
After entering the select picture Activity, the lists are different. Could you tell me the reason?
If I want to list all the photos on my android phone, How should I do? Thanks