无法绑定到服务

时间:2010-03-20 18:51:24

标签: android service aidl

我有一个如下定义的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是: 包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。我错过了一些明显的东西吗?

3 个答案:

答案 0 :(得分:2)

startService()不使用ServiceConnectionbindService()确实如此。

答案 1 :(得分:0)

Intent intent = new Intent(CallAlert.class.getName());
bindService(intent, mConnection, Context.BIND_AUTO_CREATE);

答案 2 :(得分:0)

  
    

未调用onServiceConnected。

  

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

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

你可以在这里找到

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