I am using Eclipse to develop my first android program. One things that starts driving me nuts is, that whenever I type a dot on one of androids types (e.g. TextView) Eclipse goes dead for >10 seconds apparently digging up the possible code completions. E.g. if I want to write
then in the moment when I write the dot in the second line:
Eclipse blocks to bring up a TextView's methods.
I am using eclipse in my everyday work as well and sometimes - when one is working in HUGE projects with hundreds of classes - this code completion lookup may take a second or two but here I am essentially still at the "hello world" level and I am seeing delays that are an order of magnitude longer.
Are others seeing this as well? Why does this take so long? Is there anything one can do or configure to speed this up? I have integrated the Android SDK into Eclipse 3.6 (Helios). I am using the Sun/Oracle JDK 1.6.0 update 21.
Michael
Code:
TextView tv = new TextView(this);
tv.setText("bla bla");
then in the moment when I write the dot in the second line:
Code:
...
tv[B][U].[/U][/B]
Eclipse blocks to bring up a TextView's methods.
I am using eclipse in my everyday work as well and sometimes - when one is working in HUGE projects with hundreds of classes - this code completion lookup may take a second or two but here I am essentially still at the "hello world" level and I am seeing delays that are an order of magnitude longer.
Are others seeing this as well? Why does this take so long? Is there anything one can do or configure to speed this up? I have integrated the Android SDK into Eclipse 3.6 (Helios). I am using the Sun/Oracle JDK 1.6.0 update 21.
Michael