phpAndroid開発 虎の巻

サービス

カテゴリ:アプリケーションコンポーネント

■Serviceクラスの継承

public class MyService extends Service {
	@Override
	public IBinder onBind(Intent intent) {
		// TODO Auto-generated method stub
		return null;
	}

	@Override
	public int onStartCommand(Intent intent, int flags, int startId) {
		Toast.makeText(this, "サービス開始", Toast.LENGTH_SHORT).show();
		return super.onStartCommand(intent, flags, startId);
	}

	@Override
	public void onDestroy() {
        Toast.makeText(this, "サービス終了", Toast.LENGTH_SHORT).show();
		super.onDestroy();
	}
}

■サービスの起動と終了

起動

startService(new Intent(this, MyService.class));

終了

stopService(new Intent(this, MyService.class));

■AndroidManifest.xml への登録

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <service android:name="MyService" />
    </application>

カテゴリ:アプリケーションコンポーネントの記事