[android-developers] Re: Is it possible to set minimum heap size for each application.?

2010-03-05 Thread James Wang
@mycall #1. The below code mean that every applications on VM start with 2Mb heap size. correct.? =Yes And If I want to change initial heap size for every application, I can do it directly. correct.? =Yes And according to comment, we can pass argument for heap size but in fact there is no way to

[android-developers] Re: Is it possible to set minimum heap size for each application.?

2010-03-04 Thread James Wang
Please read https://groups.google.com/group/android-porting/browse_thread/thread/a22a9bf2d67013ac/6ffc46ab049a45a4?lnk=gstq=heap+limit#6ffc46ab049a45a4 -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Re: Is it possible to set minimum heap size for each application.?

2010-03-04 Thread mycall
Thanks for your help. It is very useful for me. But I am beginner so I don't know that my understanding is correct even after reading several times. Please help me guide as a correct way. In my understanding. #1. The below code mean that every applications on VM start with 2Mb heap size.

[android-developers] Re: Is it possible to set minimum heap size for each application.?

2010-03-04 Thread Bo
check out the Launcher in Android source tree pay special attention to LauncherApplication.java and how it was mentioned in the manifest.xml On Mar 4, 2:34 pm, mycall ahndr...@naver.com wrote: Thanks for your help. It is very useful for me. But I am beginner so I don't know that my

[android-developers] Re: Is it possible to set minimum heap size for each application.?

2010-03-03 Thread James Wang
What r u going to do? To limit your app's heap size? if so, I think you can not get it done without building android source. You can find what you want on android-porting. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Re: Is it possible to set minimum heap size for each application.?

2010-03-03 Thread mycall
Actuall UI ( user interface) of my device is very slow. So I think if I extend heap size for application it will be fixed. I don't konw exactly whether my understanding is correct or not. Anyway, If I want to start some appliation with more enough heap size than needed, what I have to do.?