EZFrag
EZFrag

Reputation: 302

Eclipse - Android UI Design extremely laggy

While I am designing Android Views, Eclipse starts to lag horribly. This happens as soon as I set one of the view element's properties. It is really making me miserable.

I'm using the 64bit Eclipse on Windows 7 64bit. Just in case it is relevant, I'm using the Android 2.1 SDK. It also happens in the 2.2 SDK.

Any advice is welcome.

Regards, EZFrag

Upvotes: 2

Views: 495

Answers (2)

muffinmad
muffinmad

Reputation: 641

It's sounds like offtopic, but... Write layout xml by hand. This way gives you better understanding of your layout.

Upvotes: 0

Rudy
Rudy

Reputation: 7044

try to play around with the eclipse.ini JVM argument.

For example here is my current eclipse configuration.

--launcher.XXMaxPermSize
    1024m
    -vmargs
    -Dosgi.requiredJavaVersion=1.5
    -Xms512m
    -Xmx1024m
    -XX:MaxPermSize=512m

Upvotes: 3

Related Questions