Tagged Questions
0
votes
2answers
32 views
Did virtual devices have temporary memory?
While I was using a virtual device to test my application I noticed that sometimes, after the device has been turned off for a while (for example: I used the device to test my app today; turned off ...
-6
votes
1answer
49 views
keep my application In ram in android app [closed]
I want to keep my application in RAM Even after force closed it.
to wit , if user force closed my application , it comeback to RAM Immediately
can you help me ?
thanks
-3
votes
0answers
20 views
Folders are shown as hidden when try to access via USB Cable in samsung phone [closed]
In my Samsung Ace Duos phone, when i try to access the my phone memory through the USB Cable in my Laptop.
I don't know when & why this happen. Is there any problem regarding the virus.
What can ...
-2
votes
0answers
25 views
Messure battery status app - if i kill task xxx , battery will last xx min longer [closed]
I am looking for some advice with the memory task killer. I want to make an app that will show me the value in % or in min, whitch have been saved by killing the background appliaction.
This is very ...
0
votes
3answers
48 views
Out of Memory on Bitmap Android
I want to make implement this in android
For this, I have to load images from asset folder and I am making two HorizontalScrollView in xml file and load dynamically ImageView in it. For loading ...
1
vote
0answers
37 views
Android Java memory usage with AdMob
I am experience som major memory issues with my projekt. If you could throw some advice for me that would be really helpfull.. I'll try to explain my whole usage.
In the main activity, the first ...
0
votes
3answers
22 views
Android service stopped, memory same as before
When I stop one service of my application, the memory usage is the same as when the service runs. If I don't start this service it doesn't get increased.
Why Android doesn't release the memory of the ...
0
votes
1answer
33 views
Bitmap size greater than width and height
There is an image (PNG) i am trying to load to an ImageView.
The file size of this PNG file is 390.6KB.
Once i decode this PNG file to a bitmap, the bitmap size is >9MB.
But the bitmap's width and ...
0
votes
2answers
72 views
Reduce app's memory usage in PhoneGap
I have created app in PhoneGap which is just a simple digital clock written in HTML5 and JavaScript. The app eats ~12MB in v2.3 and ~18MB memory in v4.0+. Considering there is very little animation, ...
3
votes
2answers
101 views
Take screensot and save android
I'm a very new android developer with a basic understanding of java. I've undertaken a large project and I've hit a problem I can seem to fix.
Basically my problem has three different parts: ...
1
vote
0answers
39 views
Java service memory usage varying
I created a service which reads every 10 seconds(Thread.sleep) new messages from an online text file(chat). When I look in the settings the memory usage starts at 4.0MB which is ok, but every minute ...
0
votes
1answer
76 views
Java/Android : Phonegap Contacts API memory leaks, GC_FOR_ALLOC and GC_CONCURRENT
I'm using phonegap for a project, and at one point I need to get the entire addressBook of the user. It works great on iOS, but on android, sometimes it takes 2 seconds, sometimes up to 20 seconds.
...
1
vote
1answer
27 views
SetbackgroundResource from xml crashes VM, Out of memory. How can i optimise this?
I am currently making a small application in Android.
My wish is to have two ImageViews that change their animation when i click different buttons on the screen.
First a sample xml: (the drawables ...
0
votes
1answer
72 views
Memory vs Performance, which would be best?
I need to take an image, scale it, mask it, add a background in case some of it is transparent and then add an overlay image. To do this I've written the following:
Canvas canvas = new Canvas();
...
0
votes
3answers
46 views
Native heap keeps increasing
First I'm using API 10.
I have activity A and activity B.
I launch activity B from A. Then I call finish() in the oncreate() of B. I then launch activity B from A again and so on. When i do ...
0
votes
1answer
36 views
do drawables need to be recycled?
In my activity I have
final ImageView img = (ImageView) findViewById(R.id.myimage);
img.setImageDrawable(getdrawable()); //getdrawable() is my own function which returns a drawable
Then this line
...
0
votes
2answers
64 views
Large static map in program memory Java
I am translating 16-bit codes from a legacy device into strings as defined by a table. There are over 2,000 codes, and the codes are not consecutive.
They are currently defined in a HashMap like ...
3
votes
1answer
39 views
Why does empty project have large memory allocation?
I created an empty project in android. Then I ran it with an emulator that has hardware acceleration.
50% is already allocated. and of those the smallest free chunk of memory is a measly 174 KB.
...
1
vote
2answers
20 views
How to use MAT?
I'm running out of memory on an android emulator. I attempt to find the source of the problem.
Here's my heap data.
What's concerning if i'm reading it right is that I have 3.1 MB free but the ...
0
votes
0answers
26 views
Can't run first Android app to SIII via usb or emulator
Just started using the ADT Bundle on Win7/64bit which I believe should have everything to get started. After exactly following the "Building Your First App" tutorial I connected my Galaxy SIII via usb ...
-3
votes
0answers
35 views
Save a section of the screen to memory [closed]
I am working on an android app and am trying to make it save a section of the screen to device memory. I'm looking for a way to, in code, define the section of the screen and then capture that part of ...
2
votes
2answers
36 views
Java Android Bitmap references
I am creating this Android project with Java. However, I am wondering a bit how far the references with some Bitmap methods will go.
I have an originally Bitmap just like:
Bitmap originalBitmap = ...
0
votes
2answers
105 views
How to get actual size of mounted SD card in Android?
I'm trying to find a way to find the total size and free space of a mounted SD card on a phone, from my research on SOF and on the Android devs site I was able to find the method ...
0
votes
0answers
74 views
How to get correct size of internal memory on Android?
I am looking to get the amount of space available and used on an SD card and the internal memory of my Android phone. There appears to be some discrepancies between what I get back as a result and ...
0
votes
2answers
47 views
How do you test an “out of memory” exception handler on an Android device?
I've just added an exception handler to handle an OutOfMemoryError when doing some image processing, because there have been a few crash reports of it happening. Can I somehow fill up the memory on ...
2
votes
1answer
21 views
Issue with FloatBuffer corrupting
I am writing a 3D renderer/engine based on the DooM map layout and porting it to Android. My original algorithm was very slow and I improved it using the method ID did for their iPhone port. This is ...
1
vote
0answers
60 views
What is the Remainder in the Eclipse Memory Analyser main pie chart?
I just started learning about memory management for Android. After doing a memory dump on the application I am working on and analyzing it with Eclipse Memory Analyzer, I found out that 37MB (out of ...
4
votes
3answers
100 views
Android - how to handle saving file on low device memory(Internal/External memory)
How we can handle the file saving on low device memory(internal/Excternal memrory). I know if sufficient space is not available the OS will throw IOException but is there any way to handle this ...
0
votes
1answer
101 views
Jerky sprite (2d) movement with OpenGL ES 2.0 on Android
Edit 2. Added screenshot of logcat. If I reduce the number of sprites to 1, I still get this intermittent 'stop/starting' - so I don't think it's my code, as with 1 sprite my frame rate hovers around ...
0
votes
2answers
69 views
Android Image Size Limitation
So I seem to be running a problem on an Android program I'm writing. I'm still a noob, so please help me out understanding the problem and how I can solve my issue.
I'm creating a simple game and I'm ...
0
votes
2answers
95 views
Android Memory Management - Is my app healthy?
Im really new in android development and had created a simple app that reads some rss xml news feeds from internet, I'm a bit concerned with memory management because each time the app read a xml feed ...
1
vote
0answers
203 views
Google Map Api v2 Outof memory error Android
I am using google map api v2 for android.
Here is my code of fragment class
mapview.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout ...
1
vote
1answer
29 views
Do there exist ways to consume Android memory such that the VM will offload other apps?
We want to test, in our android app, the behaviour when the VM closes the app due to other applications consuming too much memory.
Is there an app to simulate this sort of memory-hog behaviour that ...
1
vote
0answers
33 views
MemoryFile.finalize() called while ashmem still open - How to deal with it - Android
I have seen questions at SO regarding the same question, but none of them has an accepted answer.
What exactly is the error informing? Why does this occur?
I have few Cursors in my application, and ...
0
votes
2answers
50 views
Out of Memory on some specific android phones
Normally, opening home page will cost about 10mb,
somehow in some particular machines, opening home page cost like 120m
only 4 220x220 pics and 4 1024*768 pics are allocated.
220x220 pics are ...
0
votes
0answers
60 views
Android: showing Heap size, not allocated in memory usage
I have a question about memory usage in Android.
Starting a Service that is doing basically nothing (empty oncreate onbind and ondestroy methods) results in 7 MB memory according to
...
0
votes
3answers
29 views
android permanent memory
My app does different actions deppending on the caller and some predefined values.
When a call is starting to ring I need to be as fast as possible to read those preferences from the data base and ...
-2
votes
1answer
51 views
Android. How to scale images without memory exception? [closed]
I have spent much time to understand how to scale images without Out Of Memory exception, and I want to share my knowledge, I wrote function that scale images(from big to small) to exactly size. The ...
0
votes
1answer
27 views
Android/Java How to read this file on website?
www.rgrfm.be/rgrsite/maxradio/android.php
www.rgrfm.be/rgrsite/maxradio/onair.txt
The track information of the music being played is contained in onair.txt. android.php is a php script I wrote.
I ...
0
votes
1answer
101 views
outOfMemoryError with background drawables
I read a lot about memory leaks with Bitmaps but I can't solve my problem. I have an app works fine in my phone, but in others I'm getting the outOfMemoryError bitmap size exceeds VM.
My problem is ...
-2
votes
5answers
78 views
How to force an application to stay open?
I have seen apps like Lookout, JuiceDefender, and MagicJack run in the background indefinitely, unless force closed by a user directly through the task manager. (And even then, in Gingerbread, it ...
0
votes
1answer
48 views
speed difference
Are there a difference between access time of the built in memory and the SD cards?
if yes, what is it for both?
in computers environment the memory access time is measured in nano seconds while of ...
6
votes
1answer
310 views
Android — Why my app uses about 40MB Cached background process?
I'm starting a new app with minSdkVersion="14" and targetSdkVersion="17". It contains a viewpager with 6 pages. There is 3 webviews and 3 others views.
When i push my app to background by clicking ...
0
votes
1answer
168 views
Android Handler, memory leak?
I understand that the Handler may leak memory in Android, but I am not very sure what I did is correct:
public class MyActivity extends Activity
{
Handler handler;
HashMap<String, String> ...
0
votes
1answer
38 views
What could cause out of control growth of the MessageQueue
I implemented an adapter view with a very large dataset (2000+ objects) arranged in a list. Scrolling too fast causes the memory to grow and after analysis with eclipse's MAT, it turns out all of that ...
1
vote
0answers
71 views
Android Game loop, Memory and animations
I'm new in Android and i'm developing the Insult Swordfighting of Monkey Island 1, but i'm facing some noob problems :)
This is my GameLoop:
public class MainThread extends Thread {
private static ...
0
votes
0answers
54 views
How can I force memory pressure for Android debugging?
I am trying to get a handle on some issues my Android app is having which I think are related to memory pressure when I am running in explicit "foreground" mode (Service.startForeground).
In order to ...
0
votes
0answers
74 views
Android Samsung Memory leak in EditText
I encountered a memory leak with Samsungs.
If some activity has EditText this activity will be leaked.
To show this I created a small test applications.
First Activity (called MyActivity) contains ...
1
vote
2answers
84 views
How garbage collector release AsyncTask allocated memory
In the MainActivity, every x seconds I create a new AsyncTask and I call execute with new RTask(this).execute(param); to send data to a server asyncronously. I think that create a new task so often ...
0
votes
1answer
62 views
Standard image gallery app
I'm trying to write simple application where I can swipe between photos (like that standard gallery app on each device). Standard one demonstrates impressive performance - it displays next photo ...


