The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
13 views

i am trying to develop apps that work online and offline

I am trying to develop apps that store data online, but sometimes the wifi is off. How can I make this work when the wifi is not enabled? I have created one app that works, but it stops working ...
0
votes
0answers
18 views

Uploading file via AsyncHttpClient object generates socket timer error

video file is doesn't load the webservices....we can use the following code we got a sockettime error. InputStream stream = null; try { stream = new FileInputStream(videoFilepath); ...
0
votes
0answers
35 views

Most efficient way to delete images

I have a small app that takes a picture with the device camera and then saves it with a random integer name in a folder on the sdcard. Upon reentering the app I populate a horizontal scroll view with ...
0
votes
1answer
68 views

Not able to access picture files in android-Galaxy S3

I want to access the picture files in public folder in external storage. Here is my code: if (Environment.MEDIA_MOUNTED.equals(Environment.getExternalStorageState())) { java.io.File ...
0
votes
0answers
22 views

How can I unarchive an archived webpage in Android?

I asked a similar question before. Apparently, we could load the archived file by using the third party class WebArchiveReader. However, the problem is that I also want to Email the webpage and let ...
1
vote
2answers
158 views

How to create a file that other applications (Polaris Office) can read only?

Here is what I'm trying to do in my app. I download files (docx, pptx, pdf, mov, etc) and store them in a File. After having downloaded the file, I want the user to be able to open it and read it. I ...
0
votes
4answers
61 views

new File(path) always actually creates a file on android?

I am trying to check if a file exits on android sd card...so i do: File f=new File(sdpath + "/" + DATABASE_NAME); // if(!f.exits()) { ...create new file.. } else { ...do something... } Every ...
0
votes
1answer
114 views

delete image from gallery with OnItemLongClick event

I want to know how can I use OnItemLongClickListener event to delete an image from gallery? I don't know how can I find the url or another detail about the image from this event in order to delete ...
-1
votes
2answers
31 views

Open file on android which is created through the application [closed]

I am creating a json file through my android app dynamically. I can view them in the ddms data->data->project->files in my eclipse environment. How can i view the same when i deploy it on a phone say ...
1
vote
1answer
32 views

Get preloaded file in android

I'm new to android development and I am working on a little project. What I am having some issue with is getting access to preloaded files. In my app, I have an XML file that I preloaded (I just ...
0
votes
0answers
68 views

Cannot delete file from sd card

I'm trying to delete files from my sd card, but I get this error 04-06 11:36:25.762: W/System.err(4214): java.lang.IndexOutOfBoundsException: Invalid index 1, size is 1 04-06 11:36:25.782: ...
0
votes
2answers
99 views

How to limit access to files on my android device?

The idea is that. My application allows user to listen to music and watch videos from the social network. User can save these files in cache to be able to play them offline. This data is saved to ...
0
votes
2answers
87 views

Load a file from external storage to Inputstream

i have a video file in my external directory. how can i load it to inputstream variable. For the time being i am reading file in the res/raw folder but i want to read it from the sdcard. also i dont ...
0
votes
2answers
108 views

How to choose only .mp3 extension files from whole sdcard

In my application, when a user want to upload Audio, that user should only be able to choose .mp3 extension file. If the user choose any other file like .ppt, .pdf, it wont be allowed. I have got ...
0
votes
1answer
275 views

Opening the selected item in android listview (it's image or text file)

I want to open a selected item in Android listview. If it was an image, I want to show it, if it was a text file then I want to open it, but my code doesn't work , here is oncreate method protected ...
0
votes
1answer
37 views

FIleNotFoundException error was generated at runtime

private void readFileFromSDCard() { File directory = Environment.getExternalStorageDirectory(); File file = new File(directory+"/HomeActivityLogs"); ...
0
votes
1answer
245 views

Sending an image as a Base64.encodeToString from android to c# how to get that image

From my android app I am sending an image to C# server converting it to Base64 @Override public void onPictureTaken(byte[] data, Camera camera) { String image = Base64.encodeToString(data, ...
0
votes
2answers
49 views

android create public file

I want to output logcat to logs.log file. Its working fine i can open it with application FileManager in Android. But i cannot access it if i connect my phone to computer. How to make file visible in ...
0
votes
0answers
67 views

Android Progress Dialog restart from 0 when download large file size(50mb) from url

I use this code to download file from URL to my app but when the size of file is large(more than 50mb) the progress dialog doesn't complete the count to 100%....!!? it reached to 30% or 32% or maybe ...
0
votes
0answers
26 views

The taken picture is not opened both in android and in computer

I'm working on camera app in android.So i can take and save photo on galery but there is a problem that the picture is not shown just black screen is shown and also is not opened in my computer.There ...
3
votes
1answer
110 views

Where do I Include file for Drive service account

I am trying to use a google Drive service account, integrating with my app. I do not know where to put the XXXXXXXXXXXXXXXX-privatekey.p12 for android.
0
votes
2answers
31 views

Opening a file without knowing the name

In my application I am using a timestamp as my filename when I save it to a folder on my device.I know want to access one of these files from my application but I'm not sure how to open a file that ...
0
votes
2answers
122 views

Referring to file in drawable to create Uri

I want to set the image res/drawable-hdpi/nasa_image.jpg as the wallpaper. I wrote the following code but it raises the FileNotFoundException. Uri u1 = Uri.fromFile(new ...
1
vote
0answers
47 views

getEmbeddedPicture: Call to getEmbeddedPicture failed when i put more than one mp3-file

i have a problem: i implemented an android project which plays a song when i push a button. also it shows in an another view (the app has two fragments) the meta-data of the mp3-file. i mean with ...
0
votes
1answer
194 views

Save file to internal storage privately

I want to save a file to my internal storage privately so that my application is the only one that can access it.According to the android developer site, by default, files saved to the internal ...
0
votes
3answers
49 views

Saving a file to your own android application

When My application is running I want to capture some information and save this to a folder in my application rather than to the device. I have read online that it is not possible to save a file to ...
0
votes
2answers
40 views

Reading kml file from saved email attachment

I have set up a file "import - export" process (using gmail client) in my app that would allow users to share kml files between each other or even just between devices. Please read the steps the user ...
0
votes
0answers
300 views

java.lang.NullPointerException when use context.getExternalCacheDir();

Currently in my Application I have been reported of NullPointerExceptions when I use context.getExternalCacheDir(), the NullPointerException happens in !cacheDir.exists(), the cacheDir is null and in ...
0
votes
2answers
74 views

Appending Two Mp3 files in Android

How can i append two audio files in android. I tried this but it does not work. pls give me a soln.I need to concatenate the files from sdcard that ts A.mp3 and B.mp3 .When i merge concatenate ...
0
votes
1answer
52 views

How to check for the existence of a file?

String extra=imagepath.get(i).toString(); String extra2=imageid.get(i).toString(); String path = "/mnt/sdcard/Android/data/com.example.webdata/files/Download/" + extra2 + ".jpg"; File f = new ...
0
votes
1answer
63 views

Save view to image - location or not working

I'm trying to save my view as an image. I have done some work, doesn't show any error but I can find the location where is the image saved(or in the gallery). Is the image created at all, or I'm ...
0
votes
2answers
129 views

Playing media from internal storage directory I created

So I created a directory on the internal storage like so: File mediadir = getDir("tvr", Context.MODE_PRIVATE); Then I download files from a server and save them inside the directory like this: URL ...
0
votes
1answer
91 views

Saving files from API to internal folder

We have a rest api where I can get a list of files that I need to download and save to the device in a folder I created. So I can save the files on by one, not sure how this works. The files are ...
0
votes
1answer
57 views

How to reveal the contents of Android's /data/data?

The directory /data is empty when I look through DDMS's File Explorer. It is also empty after I run adb pull /data /myLocalCopy. Yet context.getFileStreamPath("myFile.txt") says that myFile.txt will ...
0
votes
1answer
151 views

how to display .jpg image in android?

I am using .net web services and I am having list of folders and files. I am successful in retrieving list of files(.jpg Image, .pdf, .TIF) but can anybody let me know how we can open .jpg, .pdf, .tif ...
0
votes
0answers
13 views

How to write on ExternalStorage of Emulator

I am trying to write folders (make folders) on mnt/sdcard/ but directory is not making on emulator external strorage. Is there any way to create folders and files on Emulator's External Storage ...
0
votes
0answers
222 views

How to Open default File Manager External Memory/internal memory in android?

Intent intent = new Intent(); intent.setAction(Intent.ACTION_GET_CONTENT); intent.setType("file/*"); startActivity(Intent.createChooser(intent, "View Default File Manager")); i tried above code ...
2
votes
1answer
163 views

file saving on android

I am making a xml file and saving it on my device code follows HttpClient httpclient = new DefaultHttpClient(); HttpPost httppost = new ...
2
votes
1answer
58 views

What is the definition of a “large binary file”?

According to the Android reference page, FileBackupHelper should "be used only with small configuration files, not large binary files." I managed to successfully backup a database file of 8 ...
0
votes
2answers
372 views

Android: how to get list of all preference xml's for my app and read them?

how to get list of all application preferences for application, 1. I am saving shared preference in this manner 2. I know that they are in data/data/app_packagename/shared_prefs 3. THE PROBLEM: ...
1
vote
4answers
306 views

Folder creates as a file

CONFUSED: Those who down vote a question, could you add some comments, why???? I want to say bad words, just dont want to get banned. I do have an app and I want to have a folder in sdCard so users ...
0
votes
0answers
349 views

File caching and file permission

I have a problem implementing caching in my app and deploying it on 4.2.x devices. When i save a file in the app cache directory i'm unable to read it. I use a file manager with root permissions to ...
0
votes
1answer
225 views

Bitmap.compress always returns null

I am downloading requested image from my server , this image is successfully displayed after downloading but when i try to store the same image on my SD card it returns null. Here is my code for ...
1
vote
0answers
97 views

Check whether data inside data folder android

Im doing a function where I record my voice then I save it into the data folder. Managed to work around saving into the data folder. But now my problem is that I need to check whether there is that ...
0
votes
2answers
208 views

Parsing specific texts using Jsoup

I have a cities.txt file placed in my res/raw folder. Inside it contains the following. <div class="state">Alabama</div> <ul><li><a ...
1
vote
2answers
153 views

Parsing a text file using Jsoup

I have a Continent.txt file placed in my res/raw folder. Inside it contains the following. <div class="continents"> <a href="#US">US</a> <a href="#CA">Canada</a> ...
0
votes
2answers
61 views

Handling objects in Android

I want to keep some objects in memory for operations in all the activities of my app and I also want to store those objects when the app closes. Which is the most efficient way of doing this ? Some ...
0
votes
4answers
621 views

Save Bitmap in Android as JPEG in External Storage in a folder

I am using this code to save Bitmap in External Storage but it does not create the folder if it not exists: String path = Environment.getExternalStorageDirectory().toString(); OutputStream ...
1
vote
3answers
677 views

Choose internal storage and external storage

What does internal storage and external storage mean in android ? Ιs external storage a micro SDcard and internal storage phone memory ? If I need to write a file for my application, which is only my ...
0
votes
1answer
44 views

writting class object in a file in extarnal storage

at first, i am using Nexus 7 as my testing device. i want to save a class object with its all variables current value in a file and want to save the file in such place so that, after reboot of the ...

1 2 3 4 5