GCM(Google Cloud Messaging for Android) 이란?서버에서 안드로이드 단말의 앱에 데이터를 전송하는 서비스이다. 즉, 푸시서비스이다.전에는 C2DM이라는 푸시 서비스가 존재했다. 하지만 2012 구글 I/O에서 젤리빈과 함께 GCM 서비스가 공개되었다. 앞으로는 C2DM 의 신규 서비스 신청을 받지 않고 GCM을 이용해야 한다.C2DM 서비스를 종료하는 것은 아니지만 GCM으로 migration 하는 것을 권장하고 있다. *GCM 소개 : http://developer.android.com/guide/google/gcm/index.html GCM 서비스 신청하기*가이드 문서 : http://developer.android.com/guide/google/gcm/gs.html 1...
음성 인식 실행하기try{ Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH); intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL, RecognizerIntent.LANGUAGE_MODEL_FREE_FORM); intent.putExtra(RecognizerIntent.EXTRA_PROMPT, "Free Form Language Model Demo"); startActivityForResult(intent, REQUEST_SMS); } catch (ActivityNotFoundException ex) { Toast.makeText(NXTRemoteControl.this, "Activity..