0

我有一个定义如下的aidl文件:

package com.erbedo.callalert;

interface RemoteCallAlert {
    void notifyCallEnded();
}

服务是:

package com.erbedo.callalert;

public class CallAlert extends Service {

    Filter callListener;

    private final RemoteCallAlert.Stub mBinder = new RemoteCallAlert.Stub() {
        @Override
        public void notifyCallEnded() throws RemoteException {
                  // TODO
        }
        };

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

    @Override
    public void onCreate() {
        super.onCreate();
        Toast.makeText(this, "CallAlert Created", Toast.LENGTH_LONG).show();
    }

    @Override
    public void onDestroy() {
        super.onDestroy();
        Toast.makeText(this, "CallAlert Destroyed", Toast.LENGTH_LONG).show();
    }

    @Override
    public void onStart(Intent intent, int startId) {
        super.onStart(intent, startId);
        Toast.makeText(this, "CallAlert Started", Toast.LENGTH_LONG).show();
        callListener = new Filter();
        TelephonyManager tm = 
            (TelephonyManager)this.getSystemService(Context.TELEPHONY_SERVICE);
        tm.listen(this.callListener, PhoneStateListener.LISTEN_CALL_STATE);
    }

    public void callEnded() {
          // TODO
    }
}

而必须绑定到服务的Activity是:package com.erbedo.callalert;

public class DummyStart extends Activity {

    Filter callListener;
    RemoteCallAlert mService;

    private ServiceConnection mConnection = new ServiceConnection() {
        public void onServiceConnected(ComponentName className,
                IBinder service) {
            Log.d("CONNECT","OK");
        }

        public void onServiceDisconnected(ComponentName className) {

        }
    };

    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        LinearLayout l = new LinearLayout(this);
        setContentView(l);
        this.startService(new Intent(this, CallAlert.class));
    }   
}

未调用 onServiceConnected。我错过了一些明显的东西吗?

4

3 回答 3

2

startService()不使用ServiceConnection. bindService()做。

于 2010-03-20T20:22:33.857 回答
0
Intent intent = new Intent(CallAlert.class.getName());
bindService(intent, mConnection, Context.BIND_AUTO_CREATE);
于 2010-06-19T13:11:50.107 回答
0

未调用 onServiceConnected。

要与服务绑定,您需要调用 bindService()。它提供持久连接,连接建立后调用onServiceConnected()。

第二点:-如果您使用的是 AIDL IPC 机制,那么我认为您需要 2 个差异进程/应用程序之间的通信。在这里,您需要在同一个 PACKAGE 中的服务端和活动端都有相同的 .aidl 文件副本。然后你需要在你的活动方面修改一点..

你可以在这里找到

http://www.zestofandroid.blogspot.com/

于 2012-01-18T05:19:24.830 回答