룬아님의 취중코딩

현재 보고있는 화면으로 이동하는 방법 (패키지명, xml, current activity) 본문

개발/안드로이드 개발

현재 보고있는 화면으로 이동하는 방법 (패키지명, xml, current activity)

룬아님 2023. 2. 14. 16:22

1. ADB command (패키지명 확인)

adb shell dumpsys activity | grep "mCurrentFocus"

터미널에 adb 명령어를 사용하여 현재 보여지는 activity의 패키지명을 가져올 수 있다.

 

 

2. Layout Inspector (Xml, Compose 코드로 이동)

Layout Inspector에서 특정 뷰를 선택하여 Go To Declaration을 사용하면 해당 뷰가 선언된 xml 혹은 Compose 코드로 이동시켜준다.

 

3. Open Current Activity 플러그인 (Activity로 이동)

https://plugins.jetbrains.com/plugin/7877-open-current-activity

 

Open current Activity - IntelliJ IDEs Plugin | Marketplace

An action to open the class corresponding to the currently shown Activity on the attached Android device or emulator. This action can be found under Navigate / Current...

plugins.jetbrains.com

해당 플러그인을 설치하고 command + F10 혹은 Navigate -> Current Activity 선택을 통하여 현재 보여지고 있는 Activity의 코드로 이동할 수 있다.

반응형
Comments