Intent詳解

Intent的做用:使你的程序經過Intent調用相應的組件。html


 

Intent(意圖)的概念:表示咱們要執行的某個操做。例如:查看某聯繫人的詳細資料,發郵件給某人並傳送一個文件,打電話給某人說某事。android

 

Intent經過下面的屬性來描述以上的某個意圖:git

一、Action(動做):用來表示意圖的動做,如:查看,發郵件,打電話瀏覽器

二、category(類別):用來表示動做的類別。app

三、data(數據):表示與動做要操做的數據。如:查看 聯繫人ide

四、type(數據類型):對data類型的描述。函數

五、extras(附件信息):附件信息。如:詳細資料,一個文件,某事。測試

六、component(目標組件):目標組件。this

 

android內置的Intent的各屬性見google文檔或http://book.51cto.com/art/200908/142683.htmgoogle

 

Intent的生成和各屬性設置:見API

 

工做原理:你的程序向Android發送一個Inent請求,Android會根據Intent的內容在註冊的IntentFilter中選擇適當的組件來響應。好比,有一個Activity但願打開網頁瀏覽器查看某一網頁的內容,那麼這個Activity只須要發出WEB_SEARCH_ACTION請求給Android,Android會根據Intent的請求內容,查詢各組件註冊時聲明的IntentFilter,找到網頁瀏覽器Activity來瀏覽網頁。

詳細過程以下:

一、調用者生成Intent對象,並設置相關屬性。生成的Intent分爲如下兩種:

     顯示Intent:對於明確指出了目標組件名稱的Intent(調用setComponent或setClass來指定)。

     隱式Intent:對於沒有明確指出目標組件名稱的Intent。於隱式Intent,因爲沒有明確的目標組件名稱,因此必須包含足夠的屬性信息,他們是:Action,Data,Category。再由Android系統幫助應用程序尋找與Intent請求意圖最匹配的組件。

二、向Android提交Intent請求:

     根據要調用的組件不一樣,請求方式不一樣:startActivity(Intent),startServer(Intent),sendBroadcast(Intent)。

三、Android對Intnt進行解析,選擇相應的組件進行相應。這裏能夠選擇多個組件進行相應。

     對於顯示Intent,已經明肯定義了目標組件的名稱,直接調用目標組件響應便可。

     對於隱形Intnt,具體的選擇方法是:Android將Intent的屬性和一個叫作IntentFilter的過濾器比較,IntentFilter中包含系統中全部可能的待選組件。若是IntentFilter中某一組件匹配隱式Intent請求的內容,那麼Android就選擇該組件做爲該隱式Intent的目標組件。

四、註冊目標組件,配置IntentFilter。

     是目標組件在Android-Manifest.xml中聲明本身所含組件的過濾器(便可以匹配哪些Intent請求)。一個沒有聲明Intent-Filter的組件只能響應指明本身名字的顯式Intent請求,而沒法響應隱式Intent請求。而一個聲明瞭IntentFilter的組件既能夠響應顯式Intent請求,也能夠響應隱式Intent請求。在經過和IntentFilter比較來解析隱式Intent請求時,Android將如下三個因素做爲選擇的參考標準。Action,Data,Category。而Extra和Flag在解析收到Intent時是並不起做用的。

      應用程序的組件爲了告訴Android本身能響應、處理哪些隱式Intent請求,能夠聲明一個甚至多個IntentFilter。每一個IntentFilter描述該組件所能響應Intent請求的能力——組件但願接收什麼類型的請求行爲,什麼類型的請求數據。好比以前請求網頁瀏覽器這個例子中,網頁瀏覽器程序的IntentFilter就應該聲明它所但願接收的Intent Action是WEB_SEARCH_ACTION,以及與之相關的請求數據是網頁地址URI格式。

如何爲組件聲明本身的IntentFilter? 常見的方法是在AndroidManifest.xml文件中用屬性<Intent-Filter>描述組件的IntentFilter。

前面咱們提到,隱式Intent和IntentFilter進行比較時的三要素是Intent的Action、Data以及Category。實際上,一個隱式Intent請求要可以傳遞給目標組件,必要經過這三個方面的檢查。若是任何一方面不匹配,Android都不會將該隱式Intent傳遞給目標組件。接下來咱們講解這三方面檢查的具體規則。

      1.動做測試

      <intent-filter>元素中能夠包括子元素<action>,好比:     

[xhtml] view plaincopy

  1. <intent-filter>   

  2. <action android:name="com.example.project.SHOW_CURRENT" />   

  3. <action android:name="com.example.project.SHOW_RECENT" />   

  4. <action android:name="com.example.project.SHOW_PENDING" />   

  5. </intent-filter>   

 

 

一條<intent-filter>元素至少應該包含一個<action>,不然任何Intent請求都不能和該<intent-filter>匹配。

若是Intent請求的Action和<intent-filter>中個某一條<action>匹配,那麼該Intent就通
過了這條<intent-filter>的動做測試。

若是Intent請求或<intent-filter>中沒有說明具體的Action類型,那麼會出現下面兩種狀況。

(1) 若是<intent-filter>中沒有包含任何Action類型,那麼不管什麼Intent請求都沒法和這條<intent-filter>匹配。

(2) 反之,若是Intent請求中沒有設定Action類型,那麼只要<intent-filter>中包含有Action類型,這個Intent請求就將順利地經過<intent-filter>的行爲測試。

 

 

 

2.類別測試

<intent-filter>元素能夠包含<category>子元素,好比:

[xhtml] view plaincopy

  1. <intent-filter . . . >   

  2. <category android:name="android.Intent.Category.DEFAULT" />   

  3. <category android:name="android.Intent.Category.BROWSABLE" />   

  4. </intent-filter>   

 

只有當Intent請求中全部的Category與組件中某一個IntentFilter的<category>徹底匹配時,纔會讓該Intent請求經過測試,IntentFilter中多餘的<category>聲明並不會致使匹配失敗。一個沒有指定任何類別測試的IntentFilter僅僅只會匹配沒有設置類別的Intent請求。

 

3.數據測試

數據在<intent-filter>中的描述以下:

[xhtml] view plaincopy

  1. <intent-filter . . . >   

  2. <data android:type="video/mpeg" android:scheme="http" . . . />   

  3. <data android:type="audio/mpeg" android:scheme="http" . . . />   

  4. </intent-filter>   

 

<data>元素指定了但願接受的Intent請求的數據URI和數據類型,URI被分紅三部分來進行匹配:scheme、authority和path。其中,用setData()設定的Intent請求的URI數據類型和scheme必須與IntentFilter中所指定的一致。若IntentFilter中還指定了authority或path,它們也須要相匹配纔會經過測試。

 

 

 

    

    顯式Intent直接用組件的名稱定義目標組件,這種方式很直接。顯式Intent多用於在應用程序內部傳遞消息。好比在某應用程序內,一個Activity啓動一個Service。隱式Intent偏偏相反,因爲開發人員每每並不清楚別的應用程序的組件名稱,它不會用組件名稱定義須要激活的目標組件,它更普遍地用於在不一樣應用程序之間傳遞消息。


Intent用法實例

1.無參數Activity跳轉

Intent it = new Intent(Activity.Main.this, Activity2.class);

startActivity(it);   

 

2.向下一個 Activity傳遞數據(使用Bundle和Intent.putExtras)

Intent it = new Intent(Activity.Main.this, Activity2.class);

Bundle bundle=new Bundle();

bundle.putString("name", "This is from MainActivity!");

it.putExtras(bundle);       // it.putExtra(「test」, "shuju」);

startActivity(it);            // startActivityForResult(it,REQUEST_CODE);

 

對於數據的獲取能夠採用:

Bundle bundle=getIntent().getExtras();

String name=bundle.getString("name");

 

3.向上一個Activity返回結果(使 用setResult,針對startActivityForResult(it,REQUEST_CODE)啓動的Activity)

        Intent intent=getIntent();

        Bundle bundle2=new Bundle();

        bundle2.putString("name", "This is from ShowMsg!");

        intent.putExtras(bundle2);

        setResult(RESULT_OK, intent);

4. 回調上一個Activity的結果處理函數(onActivityResult)

@Override

    protected void onActivityResult(int requestCode, int resultCode, Intent data) {

        // TODO Auto-generated method stub

        super.onActivityResult(requestCode, resultCode, data);

        if (requestCode==REQUEST_CODE){

            if(resultCode==RESULT_CANCELED)

                  setTitle("cancle");

            else if (resultCode==RESULT_OK) {

                 String temp=null;

                 Bundle bundle=data.getExtras();

                 if(bundle!=null)   temp=bundle.getString("name");

                 setTitle(temp);

            }

        }

    }

一些Intent用法 實例

顯示網頁

   1. Uri uri = Uri.parse("http://google.com");  

   2. Intent it = new Intent(Intent.ACTION_VIEW, uri);  

   3. startActivity(it);

顯示地圖

   1. Uri uri = Uri.parse("geo:38.899533,-77.036476");  

   2. Intent it = new Intent(Intent.ACTION_VIEW, uri);   

   3. startActivity(it);   

   4. //其餘 geo URI 範例  

   5. //geo:latitude,longitude  

   6. //geo:latitude,longitude?z=zoom  

   7. //geo:0,0?q=my+street+address  

   8. //geo:0,0?q=business+near+city  

   9. //google.streetview:cbll=lat,lng&cbp=1,yaw,,pitch,zoom&mz=mapZoom

路徑規劃

   1. Uri uri = Uri.parse("http://maps.google.com/maps?f=d&saddr=startLat%20startLng&daddr=endLat%20endLng&hl=en");  

   2. Intent it = new Intent(Intent.ACTION_VIEW, uri);  

   3. startActivity(it);  

   4. //where startLat, startLng, endLat, endLng are a long with 6 decimals like: 50.123456 

打電話

   1. //叫出撥號程序 

   2. Uri uri = Uri.parse("tel:0800000123");  

   3. Intent it = new Intent(Intent.ACTION_DIAL, uri);  

   4. startActivity(it);  

   1. //直接打電話出去  

   2. Uri uri = Uri.parse("tel:0800000123");  

   3. Intent it = new Intent(Intent.ACTION_CALL, uri);  

   4. startActivity(it);  

   5. //用這個,要在 AndroidManifest.xml 中,加上  

   6. //<uses-permission id="android.permission.CALL_PHONE" /> 

傳送SMS/MMS

   1. //調用短信程序 

   2. Intent it = new Intent(Intent.ACTION_VIEW, uri);  

   3. it.putExtra("sms_body", "The SMS text");   

   4. it.setType("vnd.android-dir/mms-sms");  

   5. startActivity(it); 

   1. //傳送消息 

   2. Uri uri = Uri.parse("smsto://0800000123");  

   3. Intent it = new Intent(Intent.ACTION_SENDTO, uri);  

   4. it.putExtra("sms_body", "The SMS text");  

   5. startActivity(it); 

   1. //傳送 MMS  

   2. Uri uri = Uri.parse("content://media/external/images/media/23");  

   3. Intent it = new Intent(Intent.ACTION_SEND);   

   4. it.putExtra("sms_body", "some text");   

   5. it.putExtra(Intent.EXTRA_STREAM, uri);  

   6. it.setType("image/png");   

   7. startActivity(it); 

傳送 Email

   1. Uri uri = Uri.parse("mailto:xxx@abc.com");  

   2. Intent it = new Intent(Intent.ACTION_SENDTO, uri);  

   3. startActivity(it); 


   1. Intent it = new Intent(Intent.ACTION_SEND);  

   2. it.putExtra(Intent.EXTRA_EMAIL, "me@abc.com");  

   3. it.putExtra(Intent.EXTRA_TEXT, "The email body text");  

   4. it.setType("text/plain");  

   5. startActivity(Intent.createChooser(it, "Choose Email Client")); 


   1. Intent it=new Intent(Intent.ACTION_SEND);    

   2. String[] tos={"me@abc.com"};    

   3. String[] ccs={"you@abc.com"};    

   4. it.putExtra(Intent.EXTRA_EMAIL, tos);    

   5. it.putExtra(Intent.EXTRA_CC, ccs);    

   6. it.putExtra(Intent.EXTRA_TEXT, "The email body text");    

   7. it.putExtra(Intent.EXTRA_SUBJECT, "The email subject text");    

   8. it.setType("message/rfc822");    

   9. startActivity(Intent.createChooser(it, "Choose Email Client"));


   1. //傳送附件

   2. Intent it = new Intent(Intent.ACTION_SEND);  

   3. it.putExtra(Intent.EXTRA_SUBJECT, "The email subject text");  

   4. it.putExtra(Intent.EXTRA_STREAM, "file:///sdcard/mysong.mp3");  

   5. sendIntent.setType("audio/mp3");  

   6. startActivity(Intent.createChooser(it, "Choose Email Client"));

播放多媒體

       Uri uri = Uri.parse("file:///sdcard/song.mp3");  

       Intent it = new Intent(Intent.ACTION_VIEW, uri);  

       it.setType("audio/mp3");  

       startActivity(it); 

       Uri uri = Uri.withAppendedPath(MediaStore.Audio.Media.INTERNAL_CONTENT_URI, "1");  

       Intent it = new Intent(Intent.ACTION_VIEW, uri);  

       startActivity(it);

Market 相關

1.        //尋找某個應用 

2.        Uri uri = Uri.parse("market://search?q=pname:pkg_name"); 

3.        Intent it = new Intent(Intent.ACTION_VIEW, uri);  

4.        startActivity(it);  

5.        //where pkg_name is the full package path for an application 

1.        //顯示某個應用的相關信息 

2.        Uri uri = Uri.parse("market://details?id=app_id");  

3.        Intent it = new Intent(Intent.ACTION_VIEW, uri); 

4.        startActivity(it);  

5.        //where app_id is the application ID, find the ID   

6.        //by clicking on your application on Market home   

7.        //page, and notice the ID from the address bar

Uninstall 應用程序

1.        Uri uri = Uri.fromParts("package", strPackageName, null); 

2.        Intent it = new Intent(Intent.ACTION_DELETE, uri);   

3.        startActivity(it); 

相關文章
相關標籤/搜索