Skip to content

Instantly share code, notes, and snippets.

View sakurabird's full-sized avatar
💭
I may be slow to respond.

Yukari Sakurai sakurabird

💭
I may be slow to respond.
View GitHub Profile
@sakurabird
sakurabird / gist:1309012
Created October 24, 2011 13:20
Untouchable 近接センサー
SensorManager sensorMgr;
booleanhasSensor;
//センサーマネージャの取得
sensorMgr = ( SensorManager ) getSystemService( SENSOR_SERVICE );
hasSensor = false;
//センサマネージャへリスナーを登録
//ここのTYPE_PROXIMITYというところを置き換えることで、様々なセンサの値が取得可能
@sakurabird
sakurabird / gist:1309003
Created October 24, 2011 13:16
Untouchable 音声認識
//インスタンス変数の定義
SpeechRecognizer rec;
//onCreate()で変数にリスナーをセットする
// 音声認識
rec = SpeechRecognizer.createSpeechRecognizer( getApplicationContext() );
rec.setRecognitionListener( new speechListenerAdp() );
//音声認識をスタートする
// SpeechRecognizer
@sakurabird
sakurabird / gist:1308915
Created October 24, 2011 12:31
Untouchable Timer
// アクティビティからタイマーサービススタート
Intent intent = new Intent( mContext, TimerService.class );
intent.putExtra( "counter", result );
startService( intent );
//呼び出されたServiceプログラムでTimerをスタートします。
if ( timer != null )
timer.cancel();
timer = new Timer();
final android.os.Handler handler = new android.os.Handler();