I am currently learning to develop apps for Android-based devices, and I have a pretty decent hold on Java, so learning hasn't been too challenging for me. However, I am lazy, and I don't want to import each individual Android class that I need. In one of my .java files, if I was to type:
import android.*;
It would compile fine. However, if I was to type:
public class example extends Activity{...}
Below the former piece of code, Eclipse/ADT still tells me I need to import the android.app.Activity class. So, is there another way I could import all the android classes in order for me to save the time of importing each one individually?
If not, I'll be a good sport and get over it, but it would be really convenient, nonetheless.