Eclipse content support does too many things when developing Android applications

I use eclipse to write Android programs as google recommendations.

But when I write import android., it automatically becomes import android.R.anim;..

I would like to use content support, but this behavior is annoying. How to change it?

+3
source share
1 answer

EDIT:

Go to Eclipse -> Settings

Choose Java -> Editor -> Content Assist

In the field below "Auto-activation" uncheck the box "Enable auto-activation"

See if this helps you. It will turn off autocomplete, and you need to press ctrl + space to activate autocomplete.

If this does not work, then:

Eclipse, , , Android. Eclipse , , , .

, - , - , , Eclipse .

, Bitmap Android.

:

private Bitmap myBitmap;

Eclipse :

android.graphics.Bitmap

:

import android.graphics.Bitmap;
+4

All Articles