Tagged Questions
1
vote
2answers
360 views
Android Internal Storage error
I tried to write internal storage somethings.Open an dir.. and fileoutputstream.I managed to write a file but when I try to use this file and get an error(There is not an error at Logcat.When ...
1
vote
2answers
1k views
Android Shared Internal Storage
Is there such thing on any Android based device as shared internal storage? I know you can use the SDCard as a shared file location between applications, but for a project I'm working on we dont want ...
0
votes
2answers
1k views
Android: Save data to internal memory using Download
I am downloading file from a server in Android using the DownloadManager class. I want to store this file in the internal memory of the device. I tried to use ...
0
votes
2answers
461 views
get access to com.android.internal.telephony.Call
I need to get access to com.android.internal.telephony.Call.
doing so:
// Initialize the telephony framework
PhoneFactory.makeDefaultPhones (this);
// Get the default phone
Phone phone = ...
4
votes
1answer
343 views
Internal Memory limit for tablet with no SD Card feature
I am developing an android app specifically for tablet. Which is essentially an offline book reading app. The app first downloads the contents of a particular book such as the book text, images in the ...
2
votes
1answer
183 views
How to open video, audio and image on secondaryActivity in android
I'm a new student on Android. I'm able to fetch an xml from website to display text along with thumbnail in a listview. i'm able to show the item with default application. It mostly opens browser or ...
2
votes
1answer
341 views
Getting reference to internal telephony Connection instance
Can I get a reference to the com.android.internal.telephony.Connection instance of an incoming call? Can it be done before the call has been accepted?
If not, can I get information of an incoming ...
1
vote
1answer
358 views
Cannot import com.android.internal.app in Eclipse
I cannot import com.android.internal.app in Eclipse. I created Android Project, but those apps are invisible. Should I change something in projet properties?
I want to import:
import ...
1
vote
1answer
1k views
SMS receive format in phones
Not in smartphones, but in any ordinary mobiles, how is SMS received? What is the format of the message, as in packet format. Is it OS specific? If so, can you please tell me the format in Android ...
1
vote
1answer
670 views
How to save data to internal storage in android app persistently between updates?
My android app saves user information as serialized objects in a ".ser" file that's saved to internal storage.
The data can be stored and retrieved and written just fine but whenever the user ...
0
votes
1answer
146 views
read/write internal storage android
I have a question regarding internal files in android.. I tried to write some data into a file and then read it back however, it seems like I can't write data to a file unless I cast it to an integer ...
0
votes
1answer
657 views
Make directories in files internal storage
How do i make directories in internal storage?
I tried this:
File file = getFilesDir();
this makes me goes to folder "/data/data/com.mypackages/files/"
Then i want to make a folder again in that ...
0
votes
1answer
735 views
Android Bluetooth Send Private/Internal File using OBEX
Is it possible send file from Android application private directory via Bluetooth? (directory /data/data//.. (getFilesDir()))
i can't anywhere find and answer to this.
This and Intent.ACTION_SEND ...
0
votes
1answer
747 views
Android Tablet running out of internal memory
In my company we have recently had a big internal memory issue with many of our Android tablets. We are not sure if its a software or hardware issue and this is the reason I´m asking:
These tablets ...
0
votes
1answer
3k views
Get internal file path
I open an internal file and write to him like this:
final String NEWLINE = new String(newLine+"\n");
FileOutputStream fOut = openFileOutput(fileName+".txt",MODE_WORLD_READABLE);
...
0
votes
1answer
3k views
Using the Internal Storage - Android - Deleting Cache Files
I am downloading images and then saving them to the internal memory. This has a result the cache of the app to grow very quickly.
As it is suggested here:
...
0
votes
1answer
87 views
Updating a specific file that was shipped with the apk?
I'd like to know if there is any way to update a specific file in the package (apk) that was originally shipped?
In my case I need to make sure that a certain text file comes with the app when ...
0
votes
1answer
391 views
Android : Play a video from a private application file
I'm using a videoView to display a video that I downloaded from my server.
If I play the video from the sd card, it works fine using something like :
...
-1
votes
1answer
972 views
Android: save downloaded data using DownloadManager in the internal memory
I am downloading data from a server using the DownloadManager class in Android. I want to save data in the internal memroy (data/data/mypackage/files/...) instead of the external memory. How to do ...
-2
votes
1answer
31 views
What is internal storage on Android?
i am new in android,so i have some html pages that contain some events information that i want to save inside the project so the user dont have to go online to view them. i have read solutions online ...
1
vote
0answers
852 views
android trouble with saving pictures to internal memory
I'm writing an app for school, of which one of the biggest parts is taking pictures. I came to conclusion that it would be perfect if I could just save them on Internal Storage, so they would be ...
1
vote
0answers
196 views
Setting Internal Read Write properties for an existing file
I'm having an issue with opening internal data files in native applications
Its properly important to point out that I'm fairly new to Android development but not new to programming
Setup
I have a ...
1
vote
0answers
628 views
Video playback from Android internal storage eventually hangs/crashes
I'm having an issue playing an mp4 video that involves the video freezing at a random but consistent point during playback (random in that it seems to differ from device to device, but consistent in ...
1
vote
0answers
635 views
Problem facing in reading file from Internal memory of android
I am facing the problem with openfileinput class.
First thing is , I am saving my username and password in the file.On sucessful login, I will be saving and moving to internal home screen.The problem ...
0
votes
0answers
30 views
Android internal storage vs mounted drive problems with hardware sony tipo
We're having issues with the tipo when its writing files it seems to write to mnt/sdcard and then crash (also no error message is generated when it crashes it just states its stopped working????) Not ...
0
votes
0answers
24 views
How to use registerForPreciseCallStateChanged?
I am looking for information how to use registerForPreciseCallStateChanged method in internal library of Android.
Is there anyone who knows it?
0
votes
0answers
87 views
Copy a file to internal memory and use it as ringtone
I am trying to save a mp3 file from my raw directory to the internal memory. This works ok.
Then I want to set that mp3 file as a ringtone, and it appears in the System available ringtones list, but ...
0
votes
0answers
103 views
Reference a file stored in internal memory inside HTML of a webview
I have a webview :
this.webview.loadUrl("file:///android_asset/html/test.html");
in test.html i would like to write this :
<img src="file:///data/data/com.myapp/myimage.jpg" />
I doesn't ...
0
votes
0answers
274 views
Store data on android internal memory and be able to share it
I faced some difficulties in my app. I am using the AndEngine framework. All I want to do is to store some ints, booleans and strings on the phone internal memory. Until now i have been using the ...
-1
votes
0answers
51 views
Android How to Save Image From URL into Internal Memory and Use it On specific Id?
I'm using Android Hive Tutorial "Android Loading Image from URL (HTTP)"
http://www.androidhive.info/2012/07/android-loading-image-from-url-http/
Everything is working very well, but my question is ...