I want to declare static import in Android Studio as follows:
import static com.example.constants.Preferences.*;
but as soon as I move to the next line, Android Studio will hide it like this:
import com.example.constants.*;
How to get Android Studio to let me decide how to import stuff?
source
share