- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Link
- 재능이의 돈버는 일기
- StresslessLife
- K_JIN2SM
- 소소한 일상
- My Life Style & Memory a Box
- Blog's generation
- 공감 스토리
- 취객의 프로그래밍 연구실
- Love Me
- Dream Archive
- 세상에 발자취를 남기다 by kongmingu
- hanglesoul
- 카마의 IT 초행길
- 느리게.
- 미친듯이 즐겨보자..
- Joo studio
- Gonna be insane
- 악 다 날아갔어!! 갇대밋! 왓더...
- xopowo05
- 맑은공기희망운동
- 엔지니어 독립운동
- 혁준 블로그
- Simple in Complex with Simple
- 무의식이 의식을 지배한다
목록ActivityManager (2)
드럼치는 프로그래머
[안드로이드] 현재실행중인 액티비티 구하기
현재 액티비티가 실행 중이라면, true를 반환하고, 실행중이 아니라면, false를 반환합니다. private boolean isActivityTop(){ ActivityManager activityManager = (ActivityManager) getSystemService(ACTIVITY_SERVICE); List info; info = activityManager.getRunningTasks(1); if(info.get(0).topActivity.getClassName().equals(PhoneStateReceiverTestActivity.this.getClass().getName())) { return true; } else { return false; } } info = activityMan..
★─Programing/☆─Android
2013. 6. 14. 10:23
[안드로이드] 실행중인 Service 목록, Process 목록 보기
현재 Device 에 실행되고있는 Server와 Process 목록을 볼 수 있다. private void serviceList(){ /* 실행중인 service 목록 보기 */ ActivityManager am = (ActivityManager)getApplicationContext().getSystemService(Context.ACTIVITY_SERVICE); List rs = am.getRunningServices(50); for(int i=0; i
★─Programing/☆─Android
2013. 5. 21. 10:40