[펌] 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" 를 사용하면 동작이 .. IT_Programming/Android_Java 2015.08.07
[펌] Play Store 앱 등록시 Multiple APK 지원 [출처] : http://thdev.net/422 : http://aroundck.tistory.com/2300 : http://androiddevcorner.blogspot.kr/2014/10/building-multiple-apks-inside-android.html : http://tiii.tistory.com/8 : http://stackoverflow.com/a/27543477 [참조] : https://developer.android.com/google/play/publishing/multiple-apks.html : https://developer.android.com/training/multiple-apks/index.html : https:.. IT_Programming/Android_Java 2015.08.06
ConcurrentModificationException 살펴보기 * 출처 : http://younghoe.info/159 객체의 상태를 동시에 수정을 하는 것이 허용하지 않을 때 발생시키는 ConcurrentModificationException이 있습니다. ConcurrentModificationException의 쓰임으로 Javadoc API에서 예로 든 것은 하나의 쓰레드가 컬렉션을 순회(iterate) 중일 때, 다른 하나의 쓰레드가 컬렉션을 수정하.. IT_Programming/Java 2015.08.05
android.os.TransactionTooLargeException 오류 대응 및 시스템 앱 구별방법 public static List<PackageInfo> getInstalledPackages(Context context, int flags) { final PackageManager pm = context.getPackageManager(); try { return pm.getInstalledPackages(flags); } catch (Exception ignored) { //we don't care why it didn't succeed. We'll do it using an alternative way instead } // use fallback: Process process; List<PackageInfo> result = new Arr.. IT_Programming/Android_Java 2015.08.01
[펌] 안드로이드 문자열에 개수(단/복수)를 제대로 보여주자. 출처 : http://sjava.net/2015/07/안드로이드-문자열에-개수단복수를-제대로-보여주/ : https://developer.android.com/guide/topics/resources/string-resource?hl=ko 안드로이드(Android)에서 텍스트뷰(TextView)와 같은 위젯에 문자열(String)을 보여주는데 지역화(Localization)가 잘 되어 있다면 문자열 파일(/res/strings.xml)에서.. IT_Programming/Android_Java 2015.07.31
[펌][Node JS] 이미지 업로드 및 리사이즈 [출처] : http://blog.jeonghwan.net/이미지-업로드-1-multer-모듈로-파일-업로드/ : http://blog.jeonghwan.net/이미지-업로드-2-gm-모듈로-이미지-리사이징/ 이미지 업로드 - 1. multer 모듈로 파일 업로드 이미지 리사이징을 할 때 두 가지 방법을 고려할 수 있다. 1) 브라우져에서 크롭하여 다양한 이미지 크기.. IT_Programming/Dev Libs & Framework 2015.07.28
[펌] 모바일 웹에서 네이티브 앱 실행하기 * 출처 : https://pilot376.tistory.com/18 * 참고할만한 자료 : https://g-y-e-o-m.tistory.com/121 : https://g-y-e-o-m.tistory.com/32 : https://g-y-e-o-m.tistory.com/33 : https://jungwoon.github.io/android/2017/06/14/Android-App-Launch-On-Web/ : https://marobiana.tistory.com/111 : https://taegon.kim/archives/3800 : https://periar.tistory.com/entry/Javascript-APP-실행-An.. IT_Programming/JavaScript 2015.07.27
[펌] Atlassian JIRA를 이용한 애자일 Scrum 프로젝트 관리 출처: http://bcho.tistory.com/826 JIRA에 대한 소개http://bcho.tistory.com조대협 Atlassian의 jira는 버그 트랙킹 시스템에서 시작해서, issue나 Issue 기반의 전체적인 프로젝트 관리를 할 수 있게 하는 툴이다. 클라우드를 이용한 호스팅 서비스와, 설치형 서비스 양쪽을 모두 지원하며, 10 사용자의 경우 설.. IT_Programming/Dev Tools 2015.07.20
Android Studio Tips: Appearance와 Comment 설정 출처: https://www.davidlab.net/ko/tech/android-studio-tips-appearance-and-comment-settings/ Android Studio는 Eclipse에 비해서 출시 된 지 얼마 되지 않은 도구이기 때문에 아직까지 정보들을 찾기 어려운 것 같습니다. 이번 Post를 시작으로 개인적으로 Android Studio를 사용하면서 발견한 몇 가지 Tip들을 공유해 보고.. IT_Programming/Dev Tools 2015.07.20