일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 보안
- 리눅스
- Eclipse
- C++
- build.gradle
- 구글
- ActiveX
- 안철수
- 코틀린
- kotlin
- git
- KTS
- linux
- Android
- Android 4.1
- OOM
- 하버드
- 자바
- mime
- java
- 개발
- 노개북
- 탐지기법
- gradle
- 안드로이드 개발
- ActiveMovieControl
- 악성코드
- c
- 안드로이드
- Today
- Total
목록전체보기 (234)
꿈소년의 개발 이야기
안드로이드 스팬 처리 작업 시 조사한 내용. 스팬 관련 내용이 잘 정리되어 있는 글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
유니코드 캐릭터 검색을 할 수 있는 사이트 https://unicode-table.com/en/#0000 Unicode® Character Table Unicode character search web service. Find, copy and paste your favorite characters: 😎 Emoji, ❤ Hearts, 💲 Currencies, → Arrows, ★ Stars and more 🚩 unicode-table.com
String String test = null; // OK.String test = ""; // OK charchar c = '\u0000'; // OKchar c = ' '; // OKchar c = null; // Wrongchar c = ''; // Wrong
네이버 아이디로 로그인 하기 프로가드 설정법 네아로 라이브러리를 통해서 로그인하는 애플리케이션을 만드는 경우,프로가드를 설정 할 때, Retrofit 라이브러리가 사용하는 simple xml 에 대한 처리를 해줘야 한다. # 네이버 로그인 관련 retrofit 에서 사용하는 org.simpleframework.xml 처리-keep class org.simpleframework.xml.** { *; } 이걸 처리해줘야 네이버 아이디로 로그인 하는 과정이 동작한다.
안드로이드 strings.xml 파일에서 사용할 수 있는 특수 캐릭터 코드. ISO EntitiesName CodeNumber CodeGlyphDescription‘‘left single quote’’right single quote‚‚single low-9 quote““left double quote””right double quote„„double low-9 quote††dagger‡‡double dagger‰‰per mill sign‹‹single left-pointing angle quote››single right-pointing angle quote♠♠black spade suit♣♣black club suit♥♥black heart suit♦♦black diamond suit‾‾overlin..
안드로이드 DB 에 대해 FTS 설정 및 적용하기 how to implement FTS in android. https://developer.android.com/training/search/search.html#search how to use FTS3, FTS4. https://sqlite.org/fts3.html how to use SQLiteQueryBuilder in android. https://developer.android.com/reference/android/database/sqlite/SQLiteQueryBuilder.html#setTables(java.lang.String) how to use sqlite command in adb shell in android. https://dev..
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.