Я пишу приложение для Android, которое может захватывать и смотреть фотографии.Все захваченные изображения отображаются в сетке RecyclerView (CameraActivity), где я сделал все элементы кликабельными.Для хранения изображений я использую внутреннюю память в getExternalFilesDir (Environment.DIRECTORY_PICTURES), потому что я хочу сделать их доступными только из моего приложения.В результате полный путь к папке с моими картинками будет / storage / emulated / 0 / Android / data / com ._, _ / files / Pictures / image gallery .Во втором упражнении моего приложения я хочу скользить между изображениями и , для этого мне нужно получить список путей к изображениям из каталога выше хранилища. Но моя проблема в том, что я не знаю, как это сделать,Я пытался использовать getDir ("галерея изображений", 0) , но он просто создает новую папку с путем / data / data / com.webartil.cameraapp / app_image gallery .Поэтому мне нужна ваша помощь, чтобы решить мою проблему. CameraActivity
public class CameraActivity extends AppCompatActivity implements ImageAdapter.OnImageClickListener {
private static final int ACTIVITY_START_CAMERA_APP = 0;
public static final String PATH = "PATH";
private String GALLERY_LOCATION = "image gallery";
private File mGalleryFolder;
private RecyclerView mRecyclerView;
private ImageAdapter imageAdapter;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_camera);
createImageGallery();
Toolbar toolbar = findViewById(R.id.toolbar_activity_camera);
setSupportActionBar(toolbar);
initRecyclerView();
FloatingActionButton fab = findViewById(R.id.fab_shoot_photo);
fab.setOnClickListener(view -> takePhoto());
}
private void initRecyclerView() {
mRecyclerView = findViewById(R.id.gallery_recycler_view);
RecyclerView.LayoutManager layoutManager = new GridLayoutManager(this, 3);
mRecyclerView.setLayoutManager(layoutManager);
imageAdapter = new ImageAdapter(this, mGalleryFolder, this);
mRecyclerView.setAdapter(imageAdapter);
}
public void takePhoto() {
Intent callCameraApplicationIntent = new Intent();
callCameraApplicationIntent.setAction(MediaStore.ACTION_IMAGE_CAPTURE);
File photoFile = null;
try {
photoFile = createImageFile();
} catch (IOException e) {
e.printStackTrace();
}
callCameraApplicationIntent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(photoFile));
startActivityForResult(callCameraApplicationIntent, ACTIVITY_START_CAMERA_APP);
}
@Override
protected void onActivityResult(final int requestCode, final int resultCode, final Intent data) {
RecyclerView.Adapter newImageAdapter = new ImageAdapter(this, mGalleryFolder, this);
mRecyclerView.swapAdapter(newImageAdapter, false);
}
File createImageFile() throws IOException {
String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(new Date());
String imageFileName = "IMAGE_" + timeStamp + "_";
return File.createTempFile(imageFileName,".jpg", mGalleryFolder);
}
private void createImageGallery() {
mGalleryFolder =
new File(getApplicationContext().getExternalFilesDir(Environment.DIRECTORY_PICTURES),
GALLERY_LOCATION);
if(!mGalleryFolder.exists()) {
mGalleryFolder.mkdirs();
}
Log.d(PATH, mGalleryFolder.getAbsolutePath());
}
@Override
public void onClickImage(final View view, final int position) {
Intent intent = new Intent(this, ImageActivity.class);
intent.putExtra(PATH, position);
startActivity(intent);
}
}