일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- git
- 구글
- 코틀린
- 리눅스
- 자바
- 안철수
- 안드로이드 개발
- 노개북
- OOM
- c
- 안드로이드
- 보안
- 개발
- C++
- ActiveX
- 하버드
- Android
- linux
- Android 4.1
- 악성코드
- ActiveMovieControl
- Eclipse
- mime
- gradle
- 탐지기법
- java
- kotlin
- build.gradle
- KTS
- Today
- Total
목록Android (30)
꿈소년의 개발 이야기
벡터 이미지를 적용해 스크린 해상도나 크기와 상관없이 단일 리소스로만 처리할 수 있게 개발 하는 중 API 16 버전에서 문제가 생겼다. 벡터 이미지를 찾지 못해서 NullPointerException 이 발생하는 이슈가 생긴 것이다. https://developer.android.com/guide/topics/graphics/vector-drawable-resources#vector-drawables-backward-solution확인해봐도 딱히 빠진 게 없다. 도대체 뭐가 문제인지 모르던 차에 적용된 버전이었던 android support library 23.2 버전을 다시 훝어보았다.보통 ASL 의 경우, 릴리즈 히스토리에 적힌 내용을 참고하면 좋은 결과가 있었던 적이 있었기에 다시 확인해보았다. ..
버튼을 선택하면 페북 앱을 실행해서 보여주거나, 브라우저를 통해서 웹으로 보여주는 방법에 대해 설명한다.If you select a link or button, run the Facebook application or web browser to show it. 순서는 아래와 같다. 1. 페북 앱이 있는지 모른다. 그러므로 일단 넘겨줘 보자.You don't know Facebook app is installed in device. 2. 페북 앱이 없으면 exception 발생한다. 그러면 웹 브라우저로 보는 방식으로 처리한다.If you select a link or button, it will occur the exception. than handle the exception by try-catch. ..
안드로이드 스팬 처리 작업 시 조사한 내용. 스팬 관련 내용이 잘 정리되어 있는 글http://flavienlaurent.com/blog/2014/01/31/spans/ 동일한 글에 대한 번역 문https://blog.asamaru.net/2015/11/02/android-spans-a-powerful-concept/ 해당 글의 저자의 소스 파일들이 있는 곳https://github.com/flavienlaurent/spans
MIME-TypeDescriptionFile Extensionapplication/acadAutoCAD drawing filesdwgapplication/clariscadClarisCAD filesccadapplication/dxfDXF (AutoCAD)dxfapplication/msaccessMicrosoft Access filemdbapplication/mswordMicrosoft Word filedocapplication/octet-streamUninterpreted binarybinapplication/pdfPDF (Adobe Acrobat)pdfapplication/postscriptPostscript, encapsulated Postscript,ai, ps, epsAdobe Illustrato..
URIhttps://developer.android.com/reference/java/net/URI.html Urihttps://developer.android.com/reference/android/net/Uri.html Charsethttps://developer.android.com/reference/java/nio/charset/Charset.html URLDecoderhttps://developer.android.com/reference/java/net/URLDecoder.html HTML URL Encoding & Decodinghttp://www.w3schools.com/tags/ref_urlencode.asp URL Encoding/Decoding classhttp://aroundck.ti..
WindowManager windowManager = (WindowManager) mContext.getSystemService(Context.WINDOW_SERVICE);Display display = windowManager.getDefaultDisplay();Point point = new Point();display.getSize(point); point.x is width size.point.y is height size.
Android Studio is upgrade to version 2.2 from 2.1.x.But it happened critical problem for Authorization of Google SDK.below statement is printed by studio." java.lang.incompatibleclasschangeerror android.support.v4.content.contextcompat " It means that android support library v4 is not incompatible with another class. I don't know how to solve it. so I just googling and find out it's solution. co..
저는 가끔 String 관련 클래스가 많다는 생각을 합니다. 아마도 그 만큼 요구되는 바가 많다는 거겠죠. 최근에 코딩 테스트를 했는데 이거 왠걸... String 계열 클래스는 좀 알아두는게 코딩할 때 좋을 것 같네요. 자, 무슨 차이가 있는지 궁금하기도 하고, 최근에 제가 작업하던 JSON 파싱 관련해서 에러가 난 원인이 바로 이 내용이였기에 공유 합니다. String 과 스트링버퍼, 스트링 빌더는 큰 차이점이 있습니다. String 은 한번 생성되면 불변입니다. 객체로서 생성되면 메모리 공간이 변하지 않습니다. 고정된 것이죠. 그렇기 때문에 문자열 처리 작업이 모두 새로 객체를 생성해서 하게 합니다. 그러니까 애초부터 그렇게 설계된 클래스인거죠. 반면에서 StringBuffer 나 StringBui..
refer: http://www.androiddesignpatterns.com/2012/05/correctly-managing-your-sqlite-database.html Issue log:SQLiteConnectionPool The connection pool for database '/data/data/com.android.providers.media/databases/external.db' has been unable to grant a connection to thread 554 (eject thread) with flags 0x2 for 750.025 seconds. Analysis:SQLiteOpenHelper instance 가 여러 개 생성되어 접근할 경우 발생함. new 를 이용한 생성..
refer to : http://yssays.wordpress.com/2011/12/27/android-ndk-stack-tool/ https://code.google.com/p/android-ndk-stacktrace-analyzer/wiki/Usagehttp://www.codexperiments.com/android/2010/08/tips-tricks-debugging-android-ndk-stack-traces/ android ndk 내에 ndk-stack 이 있다. 라이브러리에서 생긴 문제가 되는 라인이 어딘지 찾아낸다. 1) adb logcat | ndk-stack -sym 2) ndk-stack -sym -dump Usage:------To do this, you will first need ..