kavan
kavan

Reputation: 112

How to open AppCompatActivity class?

I wanna see the AppCompatActivity class methods and objects In android studio

public class MainActivity extends AppCompatActivity{

Upvotes: 0

Views: 561

Answers (3)

Senura Dissanayake
Senura Dissanayake

Reputation: 663

If you have MacOS, click on AppCompatActivity while holding command.

Upvotes: 1

Ihdina
Ihdina

Reputation: 1730

Put cursor on AppCompatActivity then press CTRL + B or Right click on AppCompatActivity >> go to >> declaration.

Upvotes: 1

Son Truong
Son Truong

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

Related Questions