You could try mmap'ing your files, but you're better off just using the File IO more efficiently an load only the chunks of the file that you need. Remember that that is no swap in Android, so when you hit the mem limit it's not going to magically increase, as it would on your desktop.
On Jun 22, 10:57 pm, 4future <[email protected]> wrote: > hello! > > I've a problem with my android. first i wrote an aplication in C > language (for pc), which use lot of RAM memory - about 500 MB for > tables. then I try to rewrite the same code for android in Java > (eclipse)... and the problems starts > > it has taking a lot of time to create (on htc desire hd) static tables > (the same size = 500MB) - first I think that is working but...then > somebody told me that single aplication on andriod can only use 24 MB > RAM memory. it is true? how to make this size bigger? how to solve > this restriction? > > please help. > 4future. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

