Is there a compressed import method in Java that would be equivalent to the following expression:
import static android.view.View.GONE;
import static android.view.View.INVISIBLE;
import static android.view.View.VISIBLE;
I know about it:
import android.view.View.*;
But I would like to be able to control what I import, and not just import everything into the View namespace.
ANSWER: Answer No.
source
share