简体   繁体   中英

How to access to the specific Folder in Android Studio?

I need to access the specific folder depending on the name of the created project . In Main_Activity the name of this project is filled and new folder is created. Thus, Camera_Activity saves the photos taken in that folder. Next I access Gallery_Activity, but it never goes to the folder of the created project. How can I access to that folder?

An example: Name of the created folder: Proj_1, but user select the photos from another one that opens by default, the uri that comes out is: content://com.android.externalstorage.documents/document/primary%3APictures%2FCaptures_Camera2%2F Proj_aa %2Fpic_040621_110254.jpeg

Part of AndroidManifest.xml

...
<uses-feature android:name="android.hardware.camera2.full" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.CAMERA" />
    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
    <uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" />
...

MainActivity.java

...
createNewProject.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                // Coge el nombre de EditText, crea nueva carpeta y empieza la captura de las imagenes
                if(newName.getText().toString().isEmpty()){
                    Toast.makeText(getApplicationContext(), "Please, fill in the field.", Toast.LENGTH_LONG).show();
                } else {
                    name = newName.getText().toString();
                    GlobalVariables.ProjectName = name;
                    Intent intent = new Intent(MainActivity.this, Camera_Activity.class);
                    startActivity(intent);
                }
            }
        });
...

Camera_Activity.java takes the necessary photos, saves them and has a button to enter the gallery:

...

@Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_camera);

        mTextureView = findViewById(R.id.camera_preview);
        btn_take_pic = findViewById(R.id.button_take_photo);
        acceptButton = findViewById(R.id.btn_ok);
        cancelButton = findViewById(R.id.btn_cancel);
        btn_gallery = findViewById(R.id.go_to_gallery);
        imagePreview = findViewById(R.id.image_view_photo_preview);

        ...

        // File name to save the picture
        // First is getting the new project name from previous Activity:
        String newProjName = GlobalVariables.ProjectName;
        // Creating part of the name for image: timestamp. That will be: pic_tamestamp.jpeg
        @SuppressLint("SimpleDateFormat") String timestamp = new SimpleDateFormat("ddMMyy_HHmmss").format(new Date());
        directory = new File(Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES), "Captures_Camera2/Proj_" + newProjName);

        GlobalVariables.MyDirectoryPath = directory.getPath();

        if (!directory.exists() || !directory.isDirectory())
            directory.mkdirs();

        mFile = new File(directory, "pic_" + timestamp + ".jpeg");
        pathToFile = mFile.getPath();

        ....

        // ------------ GO TO GALLERY ---------
        btn_gallery.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Log.d(TAG, "You are going to Gallery...");
                Intent GalleryIntent = new Intent(context, Gallery_Activity.class);
                startActivity(GalleryIntent);
            }
        });

        // ------------ SAVE PHOTO TO THE GALLERY ---------
        acceptButton.setOnClickListener(new View.OnClickListener() {//26
            @Override
            public void onClick(View v) {
                Toast.makeText(context, "Image saved to " + pathToFile, Toast.LENGTH_LONG).show();
                // Recreating the activity with a new instance
                recreate();
            }
        });
        
        ...

Gallery_Activity.java

public class Gallery_Activity extends AppCompatActivity implements View.OnClickListener, View.OnLongClickListener {

    private static final String TAG = "GalleryActivity";
    private final Context context = this;

    private ImageView imageView1, imageView2;

    private final int CODE_IMAGE_GALLERY_FIRST = 1;
    private final int CODE_IMAGE_GALLERY_SECOND = 2;
    private final int CODE_MULTIPLE_IMAGES_GALLERY = 3;
    // Variables to check the name
    private String directoryPath;
    private String MyPath1 = null;
    private String MyPath2 = null;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        // Keeping the screen on even when there is no touch interaction
        final Window window = getWindow();
        window.addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);

        setContentView(R.layout.activity_gallery);


        imageView1 = findViewById(R.id.imageView1);
        // If you make a short click in the ImageView, you can choose only one image, if it is long click, you can choose two images
        imageView1.setOnClickListener(this);
        imageView1.setOnLongClickListener(this);
        imageView2 = findViewById(R.id.imageView2);
        imageView2.setOnClickListener(this);
        imageView2.setOnLongClickListener(this);

        directoryPath = GlobalVariables.MyDirectoryPath;
        Log.d(TAG, " The path from Camera_Activity is: " + directoryPath); // /storage/emulated/0/Pictures/Captures_Camera2/Proj_*

        chooseMultipleImages();
    }

    private void chooseMultipleImages() {
        // TODO: here it does NOT enter the giving folder although using the path
        startActivityForResult(Intent.createChooser(new Intent()
                        .putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true)
                        .setAction(Intent.ACTION_GET_CONTENT)
                        .setType("image/*")
                ,"Selecting two images.."), CODE_MULTIPLE_IMAGES_GALLERY);
    }

    ....

   
    public void processImages(View view) {
        //Toast.makeText(context, "Going to detect features...", Toast.LENGTH_SHORT).show();
        Intent processIntent = new Intent(context, ImageProcessing.class);
        startActivity(processIntent);
        finish();
    }

    @Override
    public boolean onLongClick(View v) {
        recreate();
        return false;
    }
    @Override
    public void onClick(View v) {
        if(v.getId() == R.id.imageView1){
            startActivityForResult(Intent.createChooser(new Intent()
                            .putExtra(Intent.EXTRA_ALLOW_MULTIPLE, false)
                            .setAction(Intent.ACTION_GET_CONTENT)
                            .setType("image/*")
                    ,"Selecting first image.."), CODE_IMAGE_GALLERY_FIRST);
        }
        else if(v.getId() == R.id.imageView2){
            startActivityForResult(Intent.createChooser(new Intent()
                            .putExtra(Intent.EXTRA_ALLOW_MULTIPLE, false)
                            .setAction(Intent.ACTION_GET_CONTENT)
                            .setType("image/*")
                    ,"Selecting second image.."), CODE_IMAGE_GALLERY_SECOND);
        }
    }
    @Override
    protected void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) {
        super.onActivityResult(requestCode, resultCode, data);

        ContentResolver resolver = this.getContentResolver();

        // Get data from the folder
        assert data != null;
        Uri MyData = data.getData(); // for simple image
        ClipData MultiImg = data.getClipData(); // for multiple images
        GlobalVariables.countImg = MultiImg.getItemCount();
        /*     ******************************************
                  To pick multiples images from Gallery
               ******************************************
        */
        if (requestCode == CODE_MULTIPLE_IMAGES_GALLERY && resultCode == RESULT_OK ){
            /*
            // TODO: For multiple images, more than 2 change this
            int count = data.getClipData().getItemCount(); //evaluate the count before the for loop --- otherwise, the count is evaluated every loop.
            for(int i = 0; i < count; i++)
                Uri imageUri = data.getClipData().getItemAt(i).getUri();*/

            // MultiImg != null was simplifyed since you cannot continue without any selection -> data never be null
            if(GlobalVariables.countImg == 2){
                // Getting name of the picture and print it
                MyPath1 = MultiImg.getItemAt(0).getUri().toString();
                MyPath2 = MultiImg.getItemAt(1).getUri().toString();
                String Name1 = StringUtils.right(MyPath1,22);
                String Name2 = StringUtils.right(MyPath2,22);
                //String Proj_name = StringUtils.
                GlobalVariables.PictureName1 = Name1;
                GlobalVariables.PictureName2 = Name2;
                Log.d(TAG, "--- First data name: " + StringUtils.right(MyPath1,22));
                Log.d(TAG, "--- Second data name: " + StringUtils.right(MyPath2,22));
                //Log.d(TAG, "Selected Items: " + clipData.getItemCount());
                Log.d(TAG, "The full path is: " + MultiImg.getItemAt(0).getUri().toString());
                // Showing images in the imageView
                imageView1.setImageURI(MultiImg.getItemAt(0).getUri());
                imageView2.setImageURI(MultiImg.getItemAt(1).getUri());


            } else if (MyData != null ){
                Log.d(TAG, "Only one image selected..");
                Toast.makeText(context, "You should select 2 images and not only one", Toast.LENGTH_LONG).show();
                recreate();
            }
            // MultiImg != null was simplifyed since you cannot continue without any selection -> data never be null
            else if (GlobalVariables.countImg > 2){
                //Log.d(TAG, "More than two selected images...");
                Toast.makeText(context, "You should select 2 images and not ..." + GlobalVariables.countImg, Toast.LENGTH_LONG).show();
                recreate();
            }
        }
        /*     ******************************************
                  To pick only one image fom Gallery for
                  each of ImageView and check that they
                  are different.
               ******************************************
        */
        // pick image to the imageView1
        else if(requestCode == CODE_IMAGE_GALLERY_FIRST && resultCode == RESULT_OK && MyData != null){
            MyPath1 = MyData.getPath();
            //Log.d(TAG, "\n ******** imageView1 has an image: \n" + StringUtils.right(MyPaths1,22) + "\n imageView2 has an image: \n" + StringUtils.right(MyPaths2,22));
            assert StringUtils.right(MyPath1, 22) != null;
            if(StringUtils.right(MyPath1,22).equals(StringUtils.right(MyPath2,22))){
                Toast.makeText(context, "The images have to be different. Choose other image." , Toast.LENGTH_LONG).show();
            }
            else{
                GlobalVariables.PictureName1 = StringUtils.right(MyPath1,22);
                imageView1.setImageURI(MyData);
            }
        }
        // pick image to the imageView2
        else if(requestCode == CODE_IMAGE_GALLERY_SECOND && resultCode == RESULT_OK && MyData != null) {
            MyPath2 = MyData.getPath();
            //Log.d(TAG, "\n ******** imageView1 has an image: \n" + StringUtils.right(MyPaths1,22) + "\n imageView1 has an image: \n" + StringUtils.right(MyPaths2,22));
            if(StringUtils.right(MyPath1,22).equals(StringUtils.right(MyPath2,22))){
                Toast.makeText(context, "The images have to be different. Choose other image." , Toast.LENGTH_LONG).show();
            }
            else{
                GlobalVariables.PictureName2 = StringUtils.right(MyPath2,22);
                imageView2.setImageURI(MyData);
            }
        }
    }

    ....

}

Can someone advise me on how I can solve this problem? It is clear that I could leave things as they are and tell the user to check the folder where he selects the photos. But I would like it to be something more fluid and intuitive. Thanks in advance.

private ArrayList<File> m_list = new ArrayList<File>();

  String folderpath = Environment.getExternalStorageDirectory()
        + File.separator + "folder_name/";
     File dir = new File(folderpath);
     m_list.clear();
        if (dir.isDirectory()) {
            File[] files = dir.listFiles();
            for (File file : files) {
                if (!file.getPath().contains("Not_Found"))
                    m_list.add(file);
            }
         }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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