일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 보안
- c
- 개발
- java
- git
- Eclipse
- Android 4.1
- 구글
- mime
- 노개북
- 리눅스
- ActiveX
- 자바
- Android
- KTS
- ActiveMovieControl
- kotlin
- 코틀린
- OOM
- 하버드
- C++
- 탐지기법
- 안드로이드 개발
- 안철수
- build.gradle
- gradle
- 안드로이드
- 악성코드
- linux
- Today
- Total
목록전체보기 (234)
꿈소년의 개발 이야기
@Override public void onConfigurationChanged(Configuration newConfig) { super.onConfigurationChanged(newConfig); setContentView(R.layout.myLayout); } Parent Activity 에서 Child Activity 를 불러 낼 경우, Orientation 이 change 될 때 top activity 만 회전을 수행한다. 기본적으로 Full-screen 속성으로 간주되는 activity만 회전을 수행한다. top 이 아닌 stack에 쌓인 아래 activity는 실제 Top으로 올라올 경우에 Rotation 여부를 체크하여 수행한다. stack에서 top으로 올라올때 체크해주므로 갱신되거나 ..
http://thefluxstudio.net/xe/ 우연히 블로그를 돌아다니다가 발견. 신선한 UI 가 돋보이고 느낌이 다르다. 구성도 괜찮고 어떤 기준이 있어보인다. 참고해서 지켜볼만한 플레이어임.
http://sungmooncho.com/?p=711&preview=true
[원문출처] http://developer.android.com/reference/android/app/Service.html public abstract classServiceextends ContextWrapper implements ComponentCallbacks java.lang.Object ↳ android.content.Context ↳ android.content.ContextWrapper ↳ android.app.Service Known Direct Subclasses AbstractInputMethodService, AccessibilityService, IntentService, RecognitionService, WallpaperService Known Indirect Subclas..
[원문 출처] http://developer.android.com/reference/android/os/PowerManager.html public classPowerManagerextends Object java.lang.Object ↳ android.os.PowerManager Class OverviewThis class gives you control of the power state of the device. Device battery life will be significantly affected by the use of this API. Do not acquire WakeLocks unless you really need them, use the minimum levels possible, a..
[원문 출처] http://developer.android.com/guide/topics/fundamentals.html Activities and TasksAs noted earlier, one activity can start another, including one defined in a different application. Suppose, for example, that you'd like to let users display a street map of some location. There's already an activity that can do that, so all your activity needs to do is put together an Intent object with the..
음... 평소 애플이나 스티븐 잡스가 가졌던 혁신에 존경했던 나인데.... 요새 들어서 참 싫어진게 아마도 '독선' 과 '독점' 때문인 듯...
http://www.engadget.com/2010/07/16/inside-apples-black-lab-wireless-testing-facilities/ 애플의 챔버 사진.... 쩐다..
안드로이드 Music 보면 id3tag 내의 한글 깨짐 현상 수정. 문제 해결 frameworks 소스 한글이 깨지는 mp3의 경우, id3tag 내의 정보중에서 encoding에 대한 정보가 없고, 한글은 EUC-KR (완성형) 으로 인코딩 되어 있는 경우임. id3tag 버전이 올라가면서 각 데이타의 encoding정보를 넣을 수 있음 이 인코딩 정보가 제대로 들어간 경우는 제대로 되는데, 없는 경우가 문제임. mediascanner mp3 파일 해석 id3tag 내의 정보가 UTF-8 이면 그냥 넣고, ISO-8859-1 (Lantin-1) 이면 그냥 UTF-8 인코딩만 해서 넣음. 그런데, 영문의 경우는 Latin-1 코드나 UTF-8 이나 코드가 같기 때문에 이렇게 넣어도 아무 문제가 없지만, ..