繁体   English   中英

如何从/ storage / emulated / 0访问文件列表

[英]How to get access to list of files from /storage/emulated/0

我正在编写一个可以捕获和观看照片的Android应用程序。 所有捕获的图像都显示在网格RecyclerView(CameraActivity)中,在该网格中,所有元素都可以单击。 为了存储图像,我在getExternalFilesDir(Environment.DIRECTORY_PICTURES)中使用内部存储器,因为我想使它们只能从我的应用程序访问。 结果,我的图片文件夹的完整路径为/storage/emulated/0/Android/data/com._,_/files/Pictures/image gallery 在我的应用程序的第二个活动中,我想在图像之间滑动,为此,我需要从存储目录上方获取图像路径列表。 但是我的问题是我不知道该怎么做。 我尝试使用getDir(“ image gallery”,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);
}
}

第一:提到的目录路径可用于所有应用程序。

第二:可以使用new File(path).listFiles();

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM