일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- java
- build.gradle
- 자바
- 코틀린
- 안드로이드 개발
- C++
- 개발
- gradle
- Android
- 노개북
- Android 4.1
- ActiveMovieControl
- linux
- 탐지기법
- 리눅스
- 안철수
- KTS
- 보안
- mime
- 안드로이드
- 하버드
- charset
- Eclipse
- ActiveX
- Leak
- git
- 구글
- kotlin
- OOM
- Today
- Total
목록Android Development (78)
꿈소년의 개발 이야기
Google's CES promo video for Android 3.0 (Honeycomb) that got leaked and then made private. Follow us on Twitter at http://twitter.com/AndroidPolice Subscribe to the RSS feed at http://www.androidpolice.com/feed Like us on Facebook at http://www.facebook.com/AndroidPolice http://www.androidpolice.com
z4root 루팅 방법 z4root로 루팅하신후 adb shell에서 su 후에 # mount -o remount rw /system : : : : # mount -o remount r /system
Android Full Source Compile And Debugging or Error 소스 다운로도는 http://source.android.com/source/donwload.html Ubuntu 10.04 Linux 64Bit JAVA 5.X 11Updated over make 시에 Error .. case 1> zlib.a zlib.so 에레일 경우 => 나의 경우 CPU는 64bit인데 Linux 32Bit를 깔아 버렀다. 인터넛에 떠더는 모든 에레는 다 만나고 결 국 은 Linux 64Bit로 깔아서 Android 문서 그데로 설정해서 컴파일 함. debugging error javalib.jar - .../out/target/common/obj/JAVA_LIBRARIES/google-co..
This is LogCat Save App. It is possible to save android log cat message and text. It is named Year-Month-Time.txt by this app. this app has very simply Hot to use. It just excute application and waiting. When open the window just likely command window, that is saved text file by app now This is LogCat Viewr app. saved LogCat text file is analyzed by this viewer. It can be displayed in different ..
It's possible to write code that wins every performance test in the world, but still sends users in a fiery rage when they try to use the application. These are the applications that aren't responsive enough — the ones that feel sluggish, hang or freeze for significant periods, or take too long to process input. In Android, the system guards against applications that are insufficiently responsiv..
액티비티 하나의 액티비티는 또 다른 액티비티를 시작시킬 수 있다고 했습니다. [안드로이드] 컴포넌트 #1 - 액티비티(Activity) 그렇게 시작할 수 있는 액티비티에는 다른 어플리케이션이 정의한 액티비티도 포함되는데요, 예를들어, 사용자에게 지도를 보여주고싶다면, 이미 안드로이드에 지도 위치를 보여주는 액티비티가 존재하기 때문에 , 필요한 것은 인텐트 객체에 필요한 정보를 추가한 뒤 그것을 startActivity() 의 파라미터로 전달하는 것 뿐입니다. 그러면 맵 뷰어는 지도를 보여주게 되고 , 사용자가 " BACK " 키를 누르면 다시 기존의 액티비티가 화면에 나타나겠지요. 맵 뷰어는 다른 어플리케이션 내에 정의되고 있고 다른 어플리케이션의 프로세스 상에서 실행되고 있지만 사용자에게는, 지도가 동..
1. adb logcat -d > log.txttime stamp 를 붙이고 싶다면, adb logcat -v time -d > log.txt 2. adb shell cat proc/kmsg > logkmsg.txt 권한이 있어야 할 수 있음.
Flashing froyo on ADP2 - Android Building - Google 그룹스 윗 글에 따라 현재 시도 중... 성공을 기원하는 중..
Intent in = new Intent(); in.setClassName("xxx.xxx.xxx.xxx", "xxx.xxx.xxx.xxx"); startActivity(in); 이외에 여러 가능한 조합들이 있으므로 참고.
@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으로 올라올때 체크해주므로 갱신되거나 ..