Class does not show override methods from inheritance class
I have created class ScreenDrawer that has 3 functions. And I have a class ChatsScreen that inherits the ScreenDrawer. But for some reason when I click Ctrl+O in Android Studio I don't see methods that I can override as I can do in MainActivity that extends AppCompatActivity.
So how I need to organize classes so my ChatsScreen could see ScreenDrawer methods by inherit it.
Here is my ChatsScreen
https://i.stack.imgur.com/m67Ll.png▾
Here is my...