Reputation: 112
I wanna see the AppCompatActivity class methods and objects In android studio
public class MainActivity extends AppCompatActivity{
Upvotes: 0
Views: 561
Reputation: 663
If you have MacOS, click on AppCompatActivity
while holding command.
Upvotes: 1
Reputation: 1730
Put cursor on AppCompatActivity then press CTRL + B or Right click on AppCompatActivity >> go to >> declaration.
Upvotes: 1
Reputation: 14173
Press hot key Ctrl+N then type class that you want to view its source code. Remember check check box in search class dialog as well.
Or hold Ctrl key then left click on AppCompatActivity class.
Upvotes: 1