android aidl 進(jìn)程間通訊

傳遞數(shù)據(jù)

自定義類型 要實(shí)現(xiàn)parceable 接口
并定義同名的aidl文件 文件內(nèi)容parcealbe 類名


實(shí)現(xiàn)接口回調(diào):

要實(shí)現(xiàn)接口 接口用aidl定義這樣才能執(zhí)行,在不同進(jìn)程間的對象的hashcode是不樣的槽奕,因此正常是無法回調(diào)的
接口也用aidl MyLatLngListenerAidl.aidl

package com.p2.pa.amap.location;  
interface MyLatLngListenerAidl  
{  
    void receiverLatLng(double lat,double lon);  
}  

實(shí)現(xiàn)類



public class MyLatLngListener extends MyLatLngListenerAidl.Stub {  
    ActivityMain context;  
    private AMap map;  
  
    public MyLatLngListener(AMap map, ActivityMain activityMain) {  
        super();  
        this.map = map;  
        this.context = activityMain;  
    }  
    @Override  
    public void receiverLatLng(double lat, double lon) throws RemoteException {  
        System.out.println("MyLatLngListener receiverLatLng lat:" + lat  
                + ",lon:" + lon);  
        locationOk(new LatLng(lat, lon));  
    }  

服務(wù)調(diào)用笨触,綁定連接成功后添加偵聽


class MyLocatonConnection implements ServiceConnection {  
  
  
    @Override  
    public void onServiceConnected(ComponentName arg0, IBinder arg1) {  
        printLog("onServiceConnected");  
        aidl=LocationServiceAidl.Stub.asInterface(arg1);  
        isBind = true;  
        try {  
            MyLatLngListener listener = new MyLatLngListener(aMap, ActivityMain.this);  
            printLog("MyLatLngListener:"+listener.hashCode());  
            aidl.addListener(listener);  
        } catch (RemoteException e) {  
            // TODO Auto-generated catch block  
            e.printStackTrace();  
        }  
  
    }  

參考 http://item.congci.com/item/aidl-hui-diao-hanshu-tongbu-tongxun

//android service一直再運(yùn)行丛版,通過bindService拿到service的代理穿剖,并將自己到回調(diào)對象注冊過去超埋,就能實(shí)現(xiàn)調(diào)用service中的方法哲思,和在service中調(diào)用本地activity到方//法洼畅。做到了進(jìn)程間通信。

ImyserviceManager.aidl

package com.test;  
import com.test.Ilisten;  
interface ImyserviceManager  
{  
 int add(int a,int b);  
 String show();  
 void register(Ilisten listen);  
}  

RemoteService.java

package com.test;  
import android.app.Service;  
import android.content.Intent;  
import android.os.IBinder;  
import android.os.RemoteException;  
import android.util.Log;  
public class RemoteService extends Service  
{  
  Ilisten myListener = null;  
  public class ServiceImpl extends ImyserviceManager.Stub  
  {  
      public int add(int a,int b)throws RemoteException  
      {  
          if(myListener != null)  
              myListener.change("this is call back!");  
          return (a+b);  
      }  
        
      public String show()throws RemoteException  
      {  
          return "hello world!";  
      }  
      public void register(Ilisten listen) throws RemoteException  
      {  
          // TODO Auto-generated method stub  
          myListener = listen;  
      }  
  }  
    
  @Override  
  public IBinder onBind(Intent intent)  
  {  
      // TODO Auto-generated method stub  
      return new ServiceImpl();  
  }  
  @Override  
  public int onStartCommand(Intent intent, int flags, int startId) {  
      // TODO Auto-generated method stub  
      Log.i("test","I am running .......................");  
      return super.onStartCommand(intent, flags, startId);  
        
  }  
    
    
}  

Ilisten.aidl

package com.test;  
interface Ilisten  
{  
  void change(String a);  
}  

TestAidl.java

package com.test;  
import android.app.Activity;  
import android.content.ComponentName;  
import android.content.Context;  
import android.content.Intent;  
import android.content.ServiceConnection;  
import android.os.Bundle;  
import android.os.IBinder;  
import android.os.RemoteException;  
import android.util.Log;  
import android.view.View;  
import android.view.View.OnClickListener;  
import android.widget.Button;  
import android.widget.TextView;  
public class TestAidl extends Activity  
{  
    String str = null;  
    private ImyserviceManager myManager;  
    Button myButton;  
    private TextView textView;  
    private Button button1;  
    private Button button2;  
      
    private ServiceConnection serviceConnection =new ServiceConnection()  
    {  
        public void onServiceConnected(ComponentName name, IBinder service)  
        {  
            // TODO Auto-generated method stub+  
              
            myManager=ImyserviceManager.Stub.asInterface(service);  
            try {  
                Log.i("test-------",myManager.show());  
                TextView textView=(TextView)findViewById(R.id.text);  
                textView.setText(str);  
                myManager.register(new myListener());  
                  
            } catch (RemoteException e) {  
                // TODO Auto-generated catch block  
                e.printStackTrace();  
            }  
        }  
        public void onServiceDisconnected(ComponentName name)  
        {  
            // TODO Auto-generated method stub  
              
        }  
          
    };  
      
    public class myListener extends Ilisten.Stub  
    {  
        public void change(String a) throws RemoteException  
        {  
            // TODO Auto-generated method stub  
              
            button1.setText(a);  
              
        }  
          
    }  
      
    /** Called when the activity is first created. */  
    @Override  
    public void onCreate(Bundle savedInstanceState)  
    {  
        super.onCreate(savedInstanceState);  
        setContentView(R.layout.main);  
        bindService(new Intent(TestAidl.this, RemoteService.class), serviceConnection, Context.BIND_AUTO_CREATE);  
    
         textView=(TextView)findViewById(R.id.text);  
          
         button1 = (Button) findViewById(R.id.b1);  
          
         button1.setOnClickListener(new View.OnClickListener() {  
              
            public void onClick(View v)  
            {  
                try {  
                    button1.setText(myManager.show());  
                    //myManager.add(1, 2);  
                } catch (RemoteException e) {  
                    // TODO Auto-generated catch block  
                    e.printStackTrace();  
                }  
            }  
        });  
          
         button2= (Button)findViewById(R.id.b2);  
         button2.setOnClickListener(new View.OnClickListener() {  
              
            public void onClick(View v)  
            {  
                try {  
                    myManager.add(2, 3);  
                } catch (RemoteException e) {  
                    // TODO Auto-generated catch block  
                    e.printStackTrace();  
                }  
            }  
        });  
      
    }  
}  
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末棚赔,一起剝皮案震驚了整個濱河市帝簇,隨后出現(xiàn)的幾起案子徘郭,更是在濱河造成了極大的恐慌,老刑警劉巖丧肴,帶你破解...
    沈念sama閱讀 207,248評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件残揉,死亡現(xiàn)場離奇詭異,居然都是意外死亡芋浮,警方通過查閱死者的電腦和手機(jī)抱环,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,681評論 2 381
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來纸巷,“玉大人镇草,你說我怎么就攤上這事『蜗荆” “怎么了陶夜?”我有些...
    開封第一講書人閱讀 153,443評論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長裆站。 經(jīng)常有香客問我条辟,道長,這世上最難降的妖魔是什么宏胯? 我笑而不...
    開封第一講書人閱讀 55,475評論 1 279
  • 正文 為了忘掉前任羽嫡,我火速辦了婚禮,結(jié)果婚禮上肩袍,老公的妹妹穿的比我還像新娘杭棵。我一直安慰自己,他們只是感情好氛赐,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,458評論 5 374
  • 文/花漫 我一把揭開白布魂爪。 她就那樣靜靜地躺著,像睡著了一般艰管。 火紅的嫁衣襯著肌膚如雪滓侍。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,185評論 1 284
  • 那天牲芋,我揣著相機(jī)與錄音撩笆,去河邊找鬼。 笑死缸浦,一個胖子當(dāng)著我的面吹牛夕冲,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播裂逐,決...
    沈念sama閱讀 38,451評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼歹鱼,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了卜高?” 一聲冷哼從身側(cè)響起醉冤,我...
    開封第一講書人閱讀 37,112評論 0 261
  • 序言:老撾萬榮一對情侶失蹤秩霍,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后蚁阳,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,609評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡鸽照,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,083評論 2 325
  • 正文 我和宋清朗相戀三年螺捐,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片矮燎。...
    茶點(diǎn)故事閱讀 38,163評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡定血,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出诞外,到底是詐尸還是另有隱情澜沟,我是刑警寧澤,帶...
    沈念sama閱讀 33,803評論 4 323
  • 正文 年R本政府宣布峡谊,位于F島的核電站茫虽,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏既们。R本人自食惡果不足惜濒析,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,357評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望啥纸。 院中可真熱鬧号杏,春花似錦、人聲如沸斯棒。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,357評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽荣暮。三九已至庭惜,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間渠驼,已是汗流浹背蜈块。 一陣腳步聲響...
    開封第一講書人閱讀 31,590評論 1 261
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留迷扇,地道東北人百揭。 一個月前我還...
    沈念sama閱讀 45,636評論 2 355
  • 正文 我出身青樓,卻偏偏與公主長得像蜓席,于是被迫代替她去往敵國和親器一。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,925評論 2 344

推薦閱讀更多精彩內(nèi)容