android-memory is generally Runtime Memory of Android device. This is the memory which is required run time for the execution of application or process or service. Typically RAM plays this role.
0
votes
1answer
28 views
Android new Intent memory leak / out of memory
I've got an app with 2 Activities. The first one launches on startup and with a button launches the second activity using an Intent.
Intent intent = new Intent(MainActivity.this, ...
0
votes
0answers
17 views
Content provider memory usage
I am building a app , app contact with many content provider because of that memory usage of my app goes to 100 MB. I am just getting text content from content provider but memory used by provider is ...
0
votes
0answers
32 views
Optimizing images inside View Pager
I am having ViewPager with around 10 pages. All pages have images of resolution more than 1000x2000. Basically width of the images are different for different images. As I was not able to place images ...
0
votes
0answers
33 views
Android Imageview Scaletype Memory usage
Here is the list of all ImageView Scaletypes.
Which one uses the least and most memory or are they all the same? (hence this may add up when display with ViewPager...)
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 ...
1
vote
3answers
56 views
Android - do Bitmaps automatically get recycled when an activity finish()?
Do Bitmaps automatically get recycled when an activity finish()?
Or do we have to call recycle() the bitmaps in onDestroy()?
0
votes
1answer
45 views
how to load an application into RAM, without launching that app
I want load a group of applications into RAM, without launching them. When i am loading that applications into RAM, user should be unaware of them.
I tried with following code:
Intent LaunchIntent = ...
5
votes
0answers
97 views
parse memory snapshot hprof index files programmically
I am trying to programmically analyze an hprof file.
Using the hprof-conv tool in the android-sdk I generated a bunch of com.your.package.index files.
How do I programmically parse these .index ...
2
votes
0answers
188 views
WebView and GridView into ScrollView, View too large to fit into drawing cache
I have a layout memory issue. When I have a large webview it doesn't shows anything and the logcat shows "View too large to fit into drawing cache".
The layout is:
<ScrollView
...
0
votes
1answer
247 views
'Out of Memory' error using image ViewPager
I'm new to Android and I am trying to implement a ViewPager for image browsing. I am using a library called UrlImageViewHelper to load in the images from URL strings. I am having trouble with a memory ...
1
vote
3answers
160 views
Fragment's reference to mActivity becomes null after orientation change. Ineffective fragment state maintenance
My application consists of several fragments. Up until now I've had references to them stored in a custom Application object, but I am beginning to think that I'm doing something wrong.
My problems ...
1
vote
1answer
119 views
Android onActivityResult and onResume Lifecycle after low memory cleanup
I have two activities: ActivityA and ActivityB. ActivityA starts Activity B for result, and expects a certain resultCode. If it does not get it, ActivityA finishes. The idea is that this closes the ...
0
votes
0answers
88 views
How to free up memory from all running or paused activities and return to started activity
I spent all my week digging into android heap memory control.
The story is that we changed the login screen background to something more HD. That caused serious of problem. It eat up more memory than ...
0
votes
0answers
115 views
Displaying large images — 3600px wide
I have a slideshow type of app that plays videos and images. The images are playing fine:
if (filename.contains("png") || filename.contains("jpg")
|| filename.contains("jpeg")) {
...
10
votes
6answers
588 views
How to get minimum Hardware requirement for android application
Me with some team member develop one android application which collect data on field by mobile.
Now this application is going to production. So general people will use this application.
We also need ...
0
votes
2answers
130 views
Allow auto scaling in Android Drawables for various densities?
A lot of blogs and best practices for Android Development says
"You don't need to supply bitmaps for every possible density, Android will scale your bitmaps (typically when they are loaded) to match ...
1
vote
0answers
32 views
Releasing consumed memory after using MediaPlayer
I'm developing an application containing 100s of sound effects.
after playing some of the sounds the application force closes. I understood that the problem would be consuming all the available space ...
0
votes
1answer
176 views
android - RAM consumption increases while overwriting large objects
To the downvoters: I'm not pasting any code since my question is generalized, I'll post some as soon as someone request it.
In my application I load a user's playlist in form of quite a large ...
1
vote
3answers
105 views
Android: File Reading - OutOfMemory Issue
I am creating an app that involves reading in data from a file. The file is relatively large (1.8 MB) and is being read from an async thread in onCreate. The very first time the app is started up, it ...
0
votes
2answers
45 views
Is it good practice to call GC in onPause() method?
I have doubt about calling GC explicitly would create any effect on system memory.In my particular case i am using number of data structures like Arraylist and HashMap in my activity.And there is need ...
1
vote
0answers
54 views
How to retrieve available system ram and battery level
Im currently working on an app that I really need help with and I've come to the stage where I need a bit of help. Ok so I am trying to get the amount of free system memory/Ram and the battery level ...
0
votes
2answers
38 views
What's happenings if I don't implement the override methods in Android?
I'm developing an Android app, and I already read about the lifecycle of an activity.
I don't know, what's happens if I don't implement the methods of the lifecycle onCreate(), onDestroy(), etc..
The ...
0
votes
1answer
146 views
Memory leak in a custom Handler when re-creating fragment
The following is a stripped down version of a Fragment I'm using to display a simple stopwatch. The app is working perfectly on a tablet. However, on a phone, where an orientation change will cause ...
1
vote
1answer
163 views
Android app using large portions of the heap, no success identifying memory leaks
I've got a relatively light weight app that seems to be using large portions of heap memory (in my opinion) and it doesn't shrink after garbage collection.
I haven't been able to identify any memory ...
0
votes
1answer
51 views
Regarding memory size of android application
Hei, I had developed an android application by using phone-gap framework. The memory size of .apk file is 350 kb. After installation, the usage of memory by the application is 2.00 mb. I want to ...
0
votes
1answer
306 views
Calling finish() does not clear memory references to Activity
In a simplified version of my app, I have two activities, A and B. Actvity A starts B, and after some work B calls finish(). Using the Memory Analyzer Tool on most devices (Galaxy Nexus running 4.2, ...
0
votes
2answers
397 views
Out of memory issue while loading bitmaps in Android
I am using Fedor's code(https://github.com/thest1/LazyList) for loading bitmaps. I have modified a few lines of code, according to my requirement. I am getting out of memory error when ever the heap ...
0
votes
1answer
249 views
Android Fragments memory leak related to Bitmap usage
I am trying to create some Picture Album app. But When creating new Fragment , old one stays and Bitmaps it contains are quickly filling my memory resulting in out of memory error.
Here is what I am ...
0
votes
0answers
35 views
Android Inbox Memory limit setting Programatically
How to set inbox memory limit in programatically.If limit = 20.The new incoming
message is updated in the first place.
2
votes
2answers
165 views
How to resolve bitmap size exceeds VM budget
I have designed a custom Image view Gallery, works like a charm on my Samsung Galaxy S3 but when I try to make it work on my HTC Wildfire S, it throws a java.lang.OutOfMemoryError: bitmap size exceeds ...
0
votes
3answers
133 views
How to implement Memory Cache?
I am beginner to android. I want to use Memory Cache in my application to store images in memory cache and clear it when those images are not required to be in cache! Any help will be greatly ...
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 ...
1
vote
1answer
100 views
How to unload images from memory in an Android app
In an Android application, (answers to some other questions suggest that) image resources are loaded into memory when they are first used, e.g. when I call ImageView.setImageResource(myResId).
How ...
0
votes
3answers
156 views
Activity Has Memory Leak on dialog.show()
There is back button on my layout and the Dialog is being called on every click on it. On a click I am first checking whether the progress dialog is visible i.e whether the Asynch Task is running, if ...
2
votes
1answer
148 views
Android app service memory usage difference between distinct versions
I have an Android app that starts a service listening for incoming sms, and notifies the user with a pop up..
When I install and try the app in 2.3 android devices, it uses 4 to 5 mb of memmory, and ...
1
vote
1answer
137 views
using weakReference and WakHasMap Android bitmap
After making with images:
WeakHashMap<Bitmap, WeakReference<Bitmap>> objReferenciaDebilBitmaps;
Bitmap imagen = datossss.getImagen();
...
0
votes
0answers
107 views
When is GC_CONCURRENT expected?
Writing my first Android app at the moment, but have a reasonable understanding of multithreading from other programming languages. Something I'm noticing is the Log spitting out GC_CONCURRENT ...
0
votes
0answers
121 views
FragmentManager stack back restoring the app doesn´t update ui
I'm suffering a problem with fragments. I have an activity where I insert several fragments in the same layout element, doing something like this:
1) Launch the main activity and insert fragment 1.
...
0
votes
3answers
97 views
Memory overflow android
UPDATE : 10/12/2012
After making with images:
WeakHashMap<Bitmap, WeakReference<Bitmap>> objReferenciaDebilBitmaps;
Bitmap imagen = datossss.getImagen();
...
0
votes
1answer
102 views
Memory implications fragment creation (create in each fragment transaction)
I have a doubt about the memory implications of fragments. What will be the most optimum solution in terms of memory:
1) create one object for each fragment and use these objects in the transaction ...
-1
votes
3answers
424 views
Avoiding out of memory error in loading bitmap in listview
I am having an listview and i am loading bitmaps in it from the web .. but now the problem is i am having 1000 item in the listview so, it is causing me out of memory error.. i have used the image ...
1
vote
1answer
140 views
Scanning different memory types in android
I have some queries which may be useful to others too.
In android 4.0 onwards ,
1)how to check whether external sd card support is there or not ?
2)How to run Mediascan forcefully both internal and ...
2
votes
5answers
310 views
Loading an image in android allocates a large memory
I am using an image of size 720X1136 as splash screen for my app targeted only for Samsung Galaxy Nexus phones. The actual file size is 513Kb(Found from Browser). When the activity calls the onCreate ...
2
votes
2answers
84 views
App allocation large memory when it loads up
In my android application I found this message in the logs when the app starts up.
Grow heap (frag case) to 13.781MB for 3271696-byte allocation
This happens soon after setContentView() is called ...
1
vote
3answers
141 views
Memory leak with an array
I have a very strange memory problem with my Android app.
My app use 3 classes that are the following:
public class RGB
{
public int R;
public int G;
public int B;
}
public class CMYK
...
2
votes
3answers
131 views
Android Dialog & memory
CASE 1:
public class NewEntryActivity
{
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.xxxx);
//my_button_1
...
6
votes
1answer
4k views
android.view.InflateException: Binary XML file line #2: Error inflating class <unknown>
I am developing a simple app. Just finished the home screen. If the orientation changes more than two times, it is throwing the error and application is force closing.
My activity Code :
public ...
1
vote
1answer
77 views
Android Memory Managment: Engine as Singleton?
I'm going through some memory issues with my Android development.
I was wondering if my actual model would work, and also would like some input on how to do this in a better way:
I need public ...
1
vote
0answers
142 views
MemoryInfo.availMem keeps decreasing
The callback onLowMemory() of my Activity kept on being called and so to investigate the issue, I wrote the following lines of code in the main game loop:
ActivityManager activityManager = ...
0
votes
1answer
125 views
Analyzing memory leak in MapActivity [closed]
I'm having a memory leak in a MapActivity.
Every time I enter and exit the activity the instance isn't destroyed and it leeks a lot of memory.
I've analyzed a headump with MAT (this is a shortest ...




