GithubHelp home page GithubHelp logo

Comments (6)

iad24 avatar iad24 commented on July 4, 2024

Hi @NaikSoftware . Were u able to solve this? I got stuck on this one =/

from afilechooser.

nicolabeghin avatar nicolabeghin commented on July 4, 2024

any news on this?

from afilechooser.

GersonSales avatar GersonSales commented on July 4, 2024

Any news? I've got the same issue.

from afilechooser.

nicolabeghin avatar nicolabeghin commented on July 4, 2024

I ended up applied a quick-n-dirty fix:

FileUtils.java

public static boolean isCloudFile(Uri uri) {
    return "content".equalsIgnoreCase(uri.getScheme());
}

then in my app

if (FileUtils.isCloudFile(uri)) {
    path = handleRemoteFile(uri);
}

where handleRemoteFile(final Uri uri) is

private String handleRemoteFile(final Uri uri) throws IOException {
    Cursor cursor = getContentResolver().query(uri, null, null, null, null);
    int nameIndex = cursor.getColumnIndex(OpenableColumns.DISPLAY_NAME);
    int sizeIndex = cursor.getColumnIndex(OpenableColumns.SIZE);
    cursor.moveToFirst();
    String filename = cursor.getString(nameIndex);
    long filesize = cursor.getLong(sizeIndex);
    InputStream is = getContentResolver().openInputStream(uri);
    File downloadedCloudFile = new File(downloads_folder, filename);
    if (downloadedCloudFile.exists()) {
        downloadedCloudFile.delete();
    }
    FileOutputStream out = new FileOutputStream(downloadedCloudFile);
    IOUtils.copy(is, out);
    return downloadedCloudFile.getAbsolutePath();
}

from afilechooser.

GersonSales avatar GersonSales commented on July 4, 2024

Thanks, but doesn't work for me. I have the folowing problem:

I have to caputure an image from camera, so I'm doing this:

MediaCatchActivity.java

@OnClick(R.id.sendPhoto_button)
public void sendPhotoButton(View view) {
    Intent imageCaptureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
    mMediaUri = Util.getImageUri(this);
    imageCaptureIntent.putExtra(MediaStore.EXTRA_OUTPUT, mMediaUri);
    imageCaptureIntent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
    if (imageCaptureIntent.resolveActivity(getPackageManager()) != null) {
        startActivityForResult(imageCaptureIntent, IMAGE_CAPTURE);
    }
}

Util.java

    
public static Uri getImageUri(Context context) {
    File imageFile = createImageFile(context);
    if (imageFile != null) {
        return FileProvider.getUriForFile(context, AUTHORITY, imageFile);
    }
    return null;
}

public static File createImageFile(Context context) {
    return createImageFile(context.getExternalFilesDir(Environment.DIRECTORY_PICTURES), "jpg");
}

static File createMediaFile(File storageDirectory, String extension)  {
    // Create an mediaFile file name
    String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(new Date());
    String fileName = extension.toUpperCase() + "_" + timeStamp + "_";
    File mediaFile = null;
    try {
        mediaFile = File.createTempFile(
         fileName,  /* prefix */
        "." + extension, /* suffix */
        storageDirectory /* directory */
        );
    } catch (IOException e) {
            e.printStackTrace();
    }

    // Save a file: path for use with ACTION_VIEW intents
    //mCurrentPhotoPath = mediaFile.getAbsolutePath();
    return mediaFile;
}

And this is me trying to get real path from uri

public static String getRealPathFromURI(Context context, Uri contentUri) {
    Cursor cursor = null;
     try {
        String[] proj = { MediaStore.Images.Media.DATA };
        cursor = context.getContentResolver().query(contentUri,  proj, null, null, null);
        int column_index = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
        cursor.moveToFirst();
        return cursor.getString(column_index);
    } finally {
        if (cursor != null) {
            cursor.close();
        }
    }
}

AndroidManifest.xml

...
<provider
    android:name="android.support.v4.content.FileProvider"
    android:authorities="com.capture.image"
    android:exported="false"
    android:grantUriPermissions="true">
    <meta-data
        android:name="android.support.FILE_PROVIDER_PATHS"
        android:resource="@xml/file_paths" />
</provider>
...
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
    <external-path name="images" path="Android/data/com.capture.image/files/Pictures" />
</paths>

Error

java.lang.RuntimeException: Failure delivering result ResultInfo{who=null, request=0, result=-1, data=Intent {  }} to activity {com.com.capture.image/com.capture.image.MediaCatchActivity}: java.lang.IllegalArgumentException: column '_data' does not exist. Available columns: []

from afilechooser.

nicolabeghin avatar nicolabeghin commented on July 4, 2024

I suggest to take a look at https://github.com/ArthurHub/Android-Image-Cropper or just use it as a full handle-photo-capture library. Implementing photo capture and upload from scratch is pretty hard due to android manufacturers different implementations.

from afilechooser.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.