0
votes
0answers
12 views

Uri returned after ACTION_GET_CONTENT from gallery is empty for a video files

I am using this code to let user pick file by using available applications: Intent intent = new Intent(Intent.ACTION_GET_CONTENT); intent.setType("*/*"); ...
0
votes
1answer
133 views

Android file choose dialog again

i have exactly the same question as this post Choose File Dialog i didn't see any really usable answers in there. ideally i would like a simple java code example of a simple dialog that works like ...
0
votes
0answers
185 views

Share file via webview with working filechooser

I have a webview built with filechooser working for several different versions of Android. I can successfully push the "browse for file" or "choose file" option on a website and browse for a desired ...
1
vote
1answer
65 views

Activity result is always 0

I search whole day for this issue: mUploadImage.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { Intent intent = new ...
2
votes
3answers
155 views

How to make activity appear in “Choose file” dialog?

Example: when you click a button to upload an image, you get the dialog to choose a file. Then you can select an app you want to choose it. How can I make my app appear in that dialog?
1
vote
1answer
66 views

Android Correct way to choose a file for open

I am using this intent to open a chooser to pick up a file: Intent intent = new Intent(Intent.ACTION_GET_CONTENT); intent.setDataAndType(Uri.parse(getExternalFilesDir(null).toString()), "*/*"); ...
1
vote
1answer
1k views

Upload camera photo and filechooser from webview INPUT field

My app is webbased and I need to upload pictures from an INPUT field camp. I've two situations and as i don't know another way to do it depending the page I'm choosing one or another with "boolean ...
0
votes
0answers
91 views

Upload file using Android webview [duplicate]

Possible Duplicate: File Upload in WebView I'm trying to get the file chooser to pop up from my webview app. I've researched, and researched, and researched, and researched some more, but ...
1
vote
1answer
157 views

Android File Chooser Absolute Path Issue

I use the intent filter to get the path of the file selected by the user with a file-chooser, unfortunately I have problem to obtain the absolute path, the path onActivityResult starts always with ...
2
votes
1answer
113 views

getting result for startActivityForResult() in normal class

I am working on saving PDF from internet. The class I am using, to download pdf is a normal class "FileChooser.java", not an activity class. Now, I want to open a Activity to browse through the SDCard ...
0
votes
1answer
372 views

Intent.ACTION_GET_CONTENT with type = “audio/*” doesn't work - shows all files

I've a button on which I would like to open any file manager, and allow user to pick ONLY audio files. So i wrote something like this: Intent intent = new Intent(); intent.setType("audio/*"); ...
1
vote
1answer
75 views

To add the attachment to email

I am trying to send the mail with attachment and I have writeen code for that which is working fine, but here I have written the file name which i want to attach in the program,I dont want like this I ...
1
vote
2answers
108 views

Can someone help me understand calling an Intent to select a file?

I have this code that I have semi working. I want it to pull up a file selector and then return the file chosen into a manipulable format. Maybe File or String. I read the Android Documentation on ...
1
vote
1answer
1k views

How to invoke the default file chooser picker in Android?

If you go to imgur.com from your Android device, click on Upload an Image and then on Touch here to select your images, the Android prompts you with a Choose file for upload with few options. The good ...
1
vote
2answers
229 views

android - prompt user for path/filename

I want to ask user to select a file to open from external storage and receive it's path. Preferably I'd like to avoid excesive coding and use some standard method (well known, system-provided intent ...
12
votes
5answers
14k views

Android file chooser

I want to make a file uploader. And I hence I need a file chooser but I don't want to write this by myself. I find OI file manager and I think it suits me. But how can I force user to install OI file ...
0
votes
2answers
167 views

An error about listview

I tried to make a file choose following the below link http://www.dreamincode.net/forums/topic/190013-creating-simple-file-chooser/ However, I got the error "Your content must have a ListView whose ...
0
votes
1answer
2k views

How to create file chooser in Android?

I need to create a app in which I have to show list of word files(.doc,.docx). Clicking on that file it should open up. can anyone help ? Like Dropbox in android. I m new to android.