옛날146 안드로이드 오픈소스 끝판 https://github.com/wasabeef/awesome-android-uihttp://www.java2s.com/Open-Source/Android_Free_Code/https://android-arsenal.com/free core : https://github.com/wasabeef/awesome-android-libraries 2016. 2. 2. 삼성 갤럭시S7 2월21일 발표, 3월11일 출시 [넥스트데일리 김문기 기자]삼성전자 갤럭시S7이2월21일 발표, 3월11일 출시될 것이라는 주장이 제기됐다. 1일 주요 외신들에 따르면 삼성전자는 오는21일 스페인 바르셀로나에서 열리는 모바일월드콩글레스MWC2016에 앞서 전략 스마트폰‘갤럭시S7’을 공개한다.앞서 삼성전자는 정확한 갤럭시S7발표일을 거론한 바 없다. 삼성전자는 전작인 ‘갤럭시S5’와 ‘갤럭시S6’를 MWC자리에서 공개한 바 있다. 올해도 비슷한 시기에 공개될 것으로 기대를 모았다. 같은 날 LG전자와 화웨이도 전략 스마트폰을 공개할 것으로 예상된다. 갤럭시S시리즈는 공개 후 출시 시기가 시간이 흐를수록 앞당겨졌다. 지난해 외신 지포게임즈는 차이나모바일의 상반기 캐리어 계획 일부를 소개한 자료를 인용해 갤럭시S7이3월 중 출시될 것이라 .. 2016. 2. 1. [Android] ANR 이란? What Triggers ANR? In Android, application responsiveness is monitored by the Activity Manager and Window Manager system services. Android will display the ANR dialog for a particular application when it detects one of the following conditions: No response to an input event (e.g. key press, screen touch) within 5 secondsA BroadcastReceiver hasn't finished executing within 10 seconds ANR 이 발생하는 경.. 2016. 1. 29. [Android] AlarmManager 일정시간 이벤트 실행 public void registerAlarm(){ Log.e("###", "registerAlarm"); Intent intent = new Intent(this, AlarmService_Service.class); PendingIntent sender = PendingIntent.getBroadcast(this, 0, intent, 0); try { // 내일 아침 8시 10분에 처음 시작해서, 24시간 마다 실행되게 Date tomorrow = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss").parse("2012-02-25 08:10:00"); AlarmManager am = (AlarmManager) getSystemService(ALARM_SERVICE); am.s.. 2016. 1. 29. 이전 1 ··· 10 11 12 13 14 15 16 ··· 37 다음