Android Studio 에서 소스뷰와 프로젝트뷰간에 동기화를 시키기 위해서는 "Autoscroll to Source" 와 "Autoscroll from Source" 를 체크 해주면 되도록 되어 있다.
이 기능의 경우 종류 후 재시작을 하게 되면 초기화가 되어 있어, 항상 다시 설정을 해야 하는 불편함이 있다.
해당 체크 상태를 저장하는 방법은 Intelli J 에서 지원을 하고 있지 않으며, 아래 링크의 plug-in 을 사용하여 추가로 기능을 탑재하여 해결 할 수 있다.
https://plugins.jetbrains.com/plugin/7575?pr=idea
다른 방법으로 project.default.xml 에 아래 내용을 추가하여 해결 할 수도 있다.
stack overflow 에서 관련 포스팅을 찾았다.
- <autoscrollToSource ProjectPane="true"/>와 그아래 부분이 해당 기능이다.
- <component name="ProjectView"> 항목 자체가 대부분 없으니 적당한 위치에 전체를 추가하자.
<component name="ProjectView">
<navigator currentView="ProjectPane" proportions="" version="1" splitterProportion="0.5">
<flattenPackages />
<showMembers />
<showModules />
<showLibraryContents />
<hideEmptyPackages />
<abbreviatePackageNames />
<autoscrollToSource ProjectPane="true" />
<autoscrollFromSource ProjectPane="true" />
<sortByType />
</navigator>
</component>
'android' 카테고리의 다른 글
managedQuery() deprecated => getContentResolver.query() 로 대체 (0) | 2015.11.23 |
---|---|
LoaderManager simple example - CursorLoader 의 사용 (1) | 2015.11.23 |
HttpClient - Android 6.0 에서 삭제됨. - HttpURLConnection 사용. (0) | 2015.11.23 |
안드로이드 시스템의 이미지 및 기본 아이콘에 대한 정보 확인 가능한 사이트 (0) | 2015.11.23 |
[풀소스공유/Full Source] "매일매일 체중계" 어플리케이션 소스 공유 (0) | 2015.11.20 |