Androidサービスコンポーネント
Service
概念と用途
:
Androidのサービスは、Activityとは異なり、ユーザーと対話することができず、自分で起動することができず、バックグラウンドで実行されているプログラムです.もし私たちがアプリケーションを終了したとき、Serviceプロセスが終了せず、バックグラウンドで実行されていたら、私たちはいつサービスを使用しますか?例えば私たちが音楽を再生するとき、音楽を聴きながら他のことをしたいかもしれません.音楽を再生するアプリケーションを終了すると、サービスを使わなければ歌が聞こえません.そのため、サービスを使用しなければなりません.例えば、アプリケーションのデータがネットワークを通じて取得された場合、異なる時間(一定時間)のデータが異なる場合は、アプリケーションを開くたびに取得するのではなく、サービスをバックグラウンドでタイミングよく更新できます.
Service
ライフサイクル:
Android ServiceのライフサイクルはActivityほど複雑ではありません.onCreate()、onStart()、onDestroy()の3つのメソッドのみを継承しています.サービスを最初に起動すると、onCreate()、onStart()の2つのメソッドが相次いで呼び出され、サービスを停止するとonDestroy()メソッドが実行されます.ここで注意しなければならないのは、サービスが起動した場合、サービスを再起動すると、onCreate()メソッドを実行するのではなく、onStart()メソッドを直接実行します.具体的には、次の例を参照してください.
Service
と
Activity
つうしん
:
サービスバックエンドのデータは、最終的にはフロントエンドActivityの上に表示されます.サービスを起動すると、システムは新しいプロセスを再開します.これは異なるプロセス間の通信の問題に関連しています(AIDL)このセクションではあまり説明しません.起動したサービスインスタンスを取得するには、bindServiceとonBindServiceの方法を使用することができます.サービスにおけるIBinder()メソッドとonUnbind()メソッドがそれぞれ実行されます.
サービスのタイプ
サービスには2つのタイプがあります.
1.ローカルサービス(Local Service):アプリケーション内
2.リモートサービス(Remote Sece):androidシステム内部のアプリケーション間
前者は、アプリケーションが属するスレッドなどのアプリケーションを占有するのではなく、単一のスレッドバックグラウンドで実行するなど、アップグレード情報のクエリーなど、アプリケーション独自の時間のかかるタスクを実現するために使用されます.これにより、ユーザー体験が向上します.
後者は、天気予報サービスなどの他のアプリケーションに多重化され、他のアプリケーションはこのようなサービスを書く必要がなく、既存のものを呼び出すことができる.
インスタンス1
サービスの作成、起動、停止、バインド方法の説明
プログラムファイル
/Chapter07_Service_Example/src/com/amaker/ch07/app/MainActivity.java
-
-
- package com.amaker.ch07.app;
-
- import com.amaker.ch07.app.R;
-
- import android.app.Activity;
- import android.app.Service;
- import android.content.ComponentName;
- import android.content.Intent;
- import android.content.ServiceConnection;
- import android.os.Bundle;
- import android.os.IBinder;
- import android.util.Log;
- import android.view.View;
- import android.view.View.OnClickListener;
- import android.widget.Button;
- import android.widget.Toast;
-
- /**
- * Service
- */
-
- public class MainActivity extends Activity {
- // Button
- private Button startBtn,stopBtn,bindBtn,unbindBtn;
- @Override
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- //
- setContentView(R.layout.main);
- // Button
- startBtn = (Button)findViewById(R.id.startButton01);
- stopBtn = (Button)findViewById(R.id.stopButton02);
- bindBtn = (Button)findViewById(R.id.bindButton03);
- unbindBtn = (Button)findViewById(R.id.unbindButton04);
-
- //
- startBtn.setOnClickListener(startListener);
- stopBtn.setOnClickListener(stopListener);
- bindBtn.setOnClickListener(bindListener);
- unbindBtn.setOnClickListener(unBindListener);
-
- }
- // Service
- private OnClickListener startListener = new OnClickListener() {
- @Override
- public void onClick(View v) {
- // Intent
- Intent intent = new Intent();
- // Action
- intent.setAction("com.amaker.ch07.app.action.MY_SERVICE");
- // Service
- startService(intent);
- }
- };
-
- // Service
- private OnClickListener stopListener = new OnClickListener() {
- @Override
- public void onClick(View v) {
- // Intent
- Intent intent = new Intent();
- // Action
- intent.setAction("com.amaker.ch07.app.action.MY_SERVICE");
- // Service
- stopService(intent);
- }
- };
-
- //
- private ServiceConnection conn = new ServiceConnection() {
- @Override
- public void onServiceConnected(ComponentName name, IBinder service) {
- Log.i("SERVICE", " !");
- Toast.makeText(MainActivity.this, " !", Toast.LENGTH_LONG).show();
- }
- @Override
- public void onServiceDisconnected(ComponentName name) {
- Log.i("SERVICE", " !");
- Toast.makeText(MainActivity.this, " !", Toast.LENGTH_LONG).show();
- }
- };
-
- // � Service
- private OnClickListener bindListener = new OnClickListener() {
- @Override
- public void onClick(View v) {
- // Intent
- Intent intent = new Intent();
- // Action
- intent.setAction("com.amaker.ch07.app.action.MY_SERVICE");
-
- // Service
- bindService(intent, conn, Service.BIND_AUTO_CREATE);
- }
- };
-
-
- // Service
- private OnClickListener unBindListener = new OnClickListener() {
- @Override
- public void onClick(View v) {
- // Intent
- Intent intent = new Intent();
- // Action
- intent.setAction("com.amaker.ch07.app.action.MY_SERVICE");
- // Service
- unbindService(conn);
- }
- };
-
- }
/Chapter07_Service_Example/src/com/amaker/ch07/app/MyService.java
-
-
- package com.amaker.ch07.app;
-
- import android.app.Service;
- import android.content.Intent;
- import android.os.IBinder;
- import android.util.Log;
- import android.widget.Toast;
-
- /**
- * Service
- */
- public class MyService extends Service{
-
- // null, aidl
- public IBinder onBind(Intent intent) {
- Log.i("SERVICE", "onBind..............");
- Toast.makeText(MyService.this, "onBind..............", Toast.LENGTH_LONG).show();
- return null;
- }
- // Service
- public void onCreate() {
- Log.i("SERVICE", "onCreate..............");
- Toast.makeText(MyService.this, "onCreate..............", Toast.LENGTH_LONG).show();
- }
- // startService() Service ,
- public void onStart(Intent intent, int startId) {
- Log.i("SERVICE", "onStart..............");
- Toast.makeText(MyService.this, "onStart..............", Toast.LENGTH_LONG).show();
- }
- // Service
- public void onDestroy() {
- Log.i("SERVICE", "onDestroy..............");
- Toast.makeText(MyService.this, "onDestroy..............", Toast.LENGTH_LONG).show();
- }
- }
レイアウトファイル
/Chapter07_Service_Example/res/layout/main.xml
-
-
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- >
-
- <Button
- android:text=" Service"
- android:id="@+id/startButton01"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"></Button>
-
- <Button
- android:text=" Service"
- android:id="@+id/stopButton02"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"></Button>
-
- <Button
- android:text=" Service"
- android:id="@+id/bindButton03"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"></Button>
-
- <Button
- android:text=" "
- android:id="@+id/unbindButton04"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"></Button>
-
-
- </LinearLayout>
インベントリファイル
/Chapter07_Service_Example/AndroidManifest.xml
-
-
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.amaker.ch07.app"
- android:versionCode="1"
- android:versionName="1.0">
- <application android:icon="@drawable/icon" android:label="@string/app_name">
-
- <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">
- <intent-filter>
- <action android:name="com.amaker.ch07.app.action.MY_SERVICE"/>
- </intent-filter>
- </service>
-
- </application>
- <uses-sdk android:minSdkVersion="3" />
-
- </manifest>
インスタンス2、リモートサービス呼び出し
インプリメンテーションRPC(remote procedures call)リモートプロセス呼び出し(android interface definition)インタフェース定義言語
/Chapter07_Service_Remote/src/com/amaker/ch07/app/MainActivity.java
-
-
- package com.amaker.ch07.app;
-
- import com.amaker.ch07.app.IPerson;
- import com.amaker.ch07.app.R;
-
- import android.app.Activity;
- import android.app.Service;
- import android.content.ComponentName;
- import android.content.Intent;
- import android.content.ServiceConnection;
- import android.os.Bundle;
- import android.os.IBinder;
- import android.os.RemoteException;
- import android.view.View;
- import android.view.View.OnClickListener;
- import android.widget.Button;
- import android.widget.Toast;
- /**
- *
- * RPC
- */
- public class MainActivity extends Activity {
- // IPerson
- private IPerson iPerson;
- // Button
- private Button btn;
- // ServiceConnection
- private ServiceConnection conn = new ServiceConnection() {
- @Override
- synchronized public void onServiceConnected(ComponentName name, IBinder service) {
- // IPerson
- iPerson = IPerson.Stub.asInterface(service);
- if (iPerson != null)
- try {
- // RPC
- iPerson.setName("hz.guo");
- iPerson.setAge(30);
- String msg = iPerson.display();
- //
- Toast.makeText(MainActivity.this, msg, Toast.LENGTH_LONG)
- .show();
- } catch (RemoteException e) {
- e.printStackTrace();
- }
- }
-
- @Override
- public void onServiceDisconnected(ComponentName name) {
-
- }
- };
-
- @Override
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- //
- setContentView(R.layout.main);
- // Button
- btn = (Button) findViewById(R.id.Button01);
- // Button
- btn.setOnClickListener(new OnClickListener() {
- @Override
- public void onClick(View v) {
- // Intent
- Intent intent = new Intent();
- // Intent Action
- intent
- .setAction("com.amaker.ch09.app.action.MY_REMOTE_SERVICE");
- //
- bindService(intent, conn, Service.BIND_AUTO_CREATE);
- }
- });
- }
- }
/Chapter07_Service_Remote/src/com/amaker/ch07/app/MyRemoteService.java
-
-
- package com.amaker.ch07.app;
-
- import android.app.Service;
- import android.content.Intent;
- import android.os.IBinder;
-
- import com.amaker.ch07.app.IPerson.Stub;
-
- /**
- * Service
- */
- public class MyRemoteService extends Service{
- // IPerson
- private Stub iPerson = new IPersonImpl();
- @Override
- public IBinder onBind(Intent intent) {
- return iPerson;
- }
- }
/Chapter07_Service_Remote/src/com/amaker/ch07/app/IPersonImpl.java
-
-
- package com.amaker.ch07.app;
-
- import com.amaker.ch07.app.IPerson;
-
- import android.os.RemoteException;
- /**
- *
- * IPerson
- */
- public class IPersonImpl extends IPerson.Stub{
- //
- private int age;
- private String name;
- @Override
- // name age
- public String display() throws RemoteException {
- return "name:"+name+";age="+age;
- }
- @Override
- // age
- public void setAge(int age) throws RemoteException {
- this.age = age;
- }
- @Override
- // name
- public void setName(String name) throws RemoteException {
- this.name = name;
- }
- }
/Chapter07_Service_Remote/src/com/amaker/ch07/app/IPerson.aidl
- package com.amaker.ch07.app;
-
- interface IPerson {
- void setAge(int age);
- void setName(String name);
- String display();
- }
レイアウトファイル
/Chapter07_Service_Remote/res/layout/main.xml
-
-
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- >
-
- <Button
- android:text=" Service"
- android:id="@+id/Button01"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"></Button>
-
- </LinearLayout>
インベントリファイル
/Chapter07_Service_Remote/AndroidManifest.xml
-
-
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.amaker.ch07.app"
- android:versionCode="1"
- android:versionName="1.0">
- <application android:icon="@drawable/icon" android:label="@string/app_name">
- <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="MyRemoteService">
- <intent-filter>
- <action android:name="com.amaker.ch07.app.action.MY_REMOTE_SERVICE"/>
- </intent-filter>
- </service>
-
- </application>
- <uses-sdk android:minSdkVersion="3" />
-
- </manifest>