web-dev-qa-db-ja.com

アクティビティからサービスのメソッドを呼び出す方法

アクティビティからローカルサービスのメソッドを呼び出したいだけです。どうやってやるの ?

29
Shiz

これを行う1つの方法は、インターフェイスを AndroidのAIDL で定義し、Binderサブシステムを使用してIPCを実行することです。私が投稿したリンクには、すばらしい一連の指示があります。そこから始めて、質問があればここに投稿します。非常に複雑なトピック(IPC)であるにもかかわらず、AndroidおよびBinderは、非常にシンプルに非常に良い仕事をします(少なくとも、始めるには、あなたがしたい場合は複雑にすることができます;-))

Editコメントで指摘したように、Serviceとクライアントが同じプロセスで実行されている場合、これは不要です。特に指定しない限り、これがデフォルトです。ただし、それはまだ関係なく動作しますが、もう少し複雑になります。

2
Chris Thompson

ここに役立つ例があります
Server.Java:

package com.example.bindservice.binder;

import Java.text.SimpleDateFormat;
import Java.util.Date;

import Android.app.Service;
import Android.content.Intent;
import Android.os.Binder;
import Android.os.IBinder;

public class Server extends Service {

    IBinder mBinder = new LocalBinder();

    @Override
    public IBinder onBind(Intent intent) {
        return mBinder;
    }

    public class LocalBinder extends Binder {
        public Server getServerInstance() {
            return Server.this;
        }
    }

    public String getTime() {
        SimpleDateFormat mDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        return mDateFormat.format(new Date());
    }
}

Client.Java

package com.example.bindservice.binder;

import Android.app.Activity;
import Android.content.ComponentName;
import Android.content.Intent;
import Android.content.ServiceConnection;
import Android.os.Bundle;
import Android.os.IBinder;
import Android.view.View;
import Android.view.View.OnClickListener;
import Android.widget.Button;
import Android.widget.TextView;
import Android.widget.Toast;

import com.example.bindservice.binder.Server.LocalBinder;

public class Client extends Activity {

    boolean mBounded;
    Server mServer;
    TextView text;
    Button button;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        text = (TextView)findViewById(R.id.text);
        button = (Button) findViewById(R.id.button);
        button.setOnClickListener(new OnClickListener() {
            public void onClick(View v) {
                text.setText(mServer.getTime());
            }
        });
    }

    @Override
    protected void onStart() {
        super.onStart();

        Intent mIntent = new Intent(this, Server.class);
        bindService(mIntent, mConnection, BIND_AUTO_CREATE);
    };

    ServiceConnection mConnection = new ServiceConnection() {
        @Override
        public void onServiceDisconnected(ComponentName name) {
            Toast.makeText(Client.this, "Service is disconnected", 1000).show();
            mBounded = false;
            mServer = null;
        }

        @Override
        public void onServiceConnected(ComponentName name, IBinder service) {
            Toast.makeText(Client.this, "Service is connected", 1000).show();
            mBounded = true;
            LocalBinder mLocalBinder = (LocalBinder)service;
            mServer = mLocalBinder.getServerInstance();
        }
    };

    @Override
    protected void onStop() {
        super.onStop();
        if(mBounded) {
            unbindService(mConnection);
            mBounded = false;
        }
    };
}
58
Prateek Yadav

「ローカルサービスサンプル」の下のサービスドキュメントには、この権利のサンプルコードがあります。

http://developer.Android.com/reference/Android/app/Service.html#LocalServiceSample

また、aidlを提案している人たち-サービスとクライアントがすべて自分の.apkの一部であり、同じプロセス(デフォルトの動作)で実行されている場合、aidlは必要ありません。それはあなたに何も与えない単なる追加の複雑さです。

28
hackbod

通常のJavaクラスメソッドをどのように呼び出しますか?

_A obj = new A();
obj.method();
_

サービスはJavaクラスです。それでは、サービスメソッドをどのように呼び出しますか?

_serviceObj.method();
_

本当の問題は、Serviceオブジェクトをどのように作成するかです。

Service serviceObj = new Service();

間違いなくそうです

Androidでは、サービスはAndroid OSによって作成、破棄、管理されるシステムコンポーネントです。
サービスオブジェクトを作成するには、「IBinder。

これは、 IBinder からサービスオブジェクトを取得するフローです。

enter image description here

ServiceObjectを保持したら。通常のJavaオブジェクト。
図で説明した上記のことは、サービスのバインドと呼ばれます。

バインディングにより、アクティビティからバックグラウンドサービスを監視できます。バインディングを使用すると、Activity <---> Serviceの両方の方法で通信できます。
Prateek Yadavはすでに優れたコードスニペットを提供しています。あなたはそれを使うことができます。

覚えておくべきこと

  • ResourceLeakにつながるサービスのバインドを解除することを忘れないでください。
  • startService(intent)およびbindService(mIntent, mConnection, BIND_AUTO_CREATE)を任意の順序で呼び出すことができます。サービスのバインドと開始は、2つの独立したものです。
2
Rohit Singh

あなたの問題がどこにあるのか分かりません。コードを投稿してください。バインダを使用すると、アクティビティはサービスオブジェクトにアクセスできます。アクティビティとサービスの間の接続を作成するためのAPIの例を参照してください。

アクティビティにサービスオブジェクトがある場合、次のように呼び出すだけです。
mService.yourMethod();
問題を正確に説明し、私が言ったように、スニペットを投稿していただければ、より良いお手伝いができます。

0
Jonathan Roth