Cannot resolve error "window"

When I add "this.requestWindowFeature(Window.FEATURE_NO_TITLE);"

to my activity, the IDE reddens "Window" and on the tooltip it warns me that it "cannot resolve" the symbol window "

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    this.requestWindowFeature(Window.FEATURE_NO_TITLE);
    setContentView(R.layout.activity_splash_screen);

      

Any help would be appreciated.

+3


source to share


2 answers


Add import android.view.Window;

to fix this issue.



+4


source


Press and hold the ctrl

( command

on MAC) key and click on the text 'window'

. A orange bulb

will appear in the left pane, click on it, it will ask you import

for the required module.



+1


source







All Articles