IT_Programming 1309

[펌][안드로이드 스튜디오] Android NDK Debugging / 네이티브 코드 디버깅하기

출처 : https://skyfe79.gitbooks.io/android-ndk-debugging/chapter1.html : https://skyfe79.gitbooks.io/android-ndk-debugging/chapter9.html Android NDK Debugging안드로이드 스튜디오 1.3버전부터 NDK 디버깅을 지원한다. 2015년 7월 30일 Final Beta버전이 출시되었다. 베타 버전에 특별한 문제점이 없다면 1.3 정식 버전도 며칠내에 출..

[안드로이드 스튜디오] apk 이름 변경 하기, 버전별 자동 생성 정리하기

출처: http://comostudio.tistory.com/6 안드로이드 스튜디오에서는 apk 파일을 만들면 기본적으로 app-degug.apk라는 이름으로 생성 된다. 발행시 이름을 변경 하면 되지만... 귀찮다. 그리고 버전별로 정리 하기도 어렵다. 그래서 build.gradle을 열어보면 android { compileSdkVersion 22 buildToolsVersion "22.0.1" default..

[펌] windowTranslucentStatus 설정 후 adjustResize 안될 때 / Android FullScreen + AdjustResize

출처 : http://outliers.tistory.com/entry/adjustResize-안되는-문제 : http://ejnahc.tistory.com/484 windowTranslucentStatus 설정 후 adjustResize 안될 때 style.xml 에서 <item name="android:windowTranslucentStatus">true</item> 사용 시 adjustResize 동작을 하지 않을 때 activity.xml 에 android:fitsSystemWindows="true" 를 사용하면 동작이 ..