【聲明】 html
歡迎轉載,但請保留文章原始出處→_→ java
生命壹號:http://www.cnblogs.com/smyhvae/ android
文章來源:http://www.cnblogs.com/smyhvae/p/3959204.html 面試
【正文】瀏覽器
Intent組件雖然不是四大組件,但倒是鏈接四大組件的橋樑,學習好這個知識,也很是的重要。app
1、什麼是Intentide
一、Intent的概念:函數
activity、service和broadcast receiver之間是經過Intent進行通訊的,而另一個組件Content Provider自己就是一種通訊機制,不須要經過Intent。咱們來看下面這個圖就知道了:學習
若是Activity1須要和Activity2進行聯繫,兩者不須要直接聯繫,而是經過Intent做爲橋樑。通俗來說,Intnet相似於中介、媒婆的角色。測試
二、對於向這三種組件發送intent有不一樣的機制:
2、Intent的相關屬性:
Intent類型分爲顯式Intent(直接類型)、隱式Intent(間接類型)。官方建議使用隱式Intent。上述屬性中,component屬性爲直接類型,其餘均爲間接類型。
相比與顯式Intent,隱式Intnet則含蓄了許多,它並不明確指出咱們想要啓動哪個活動,而是指定一系列更爲抽象的action和category等信息,而後交由系統去分析這個Intent,並幫咱們找出合適的活動去啓動。
Activity 中 Intent Filter 的匹配過程 :
一、component(組件):目的組件
Component屬性明確指定Intent的目標組件的類名稱。(屬於直接Intent)
若是 component這個屬性有指定的話,將直接使用它指定的組件。指定了這個屬性之後,Intent的其它全部屬性都是可選的。
例如,啓動第二個Activity時,咱們能夠這樣來寫:
1 button1.setOnClickListener(new OnClickListener() { 2 @Override 3 public void onClick(View v) { 4 //建立一個意圖對象
5 Intent intent = new Intent(); 6 //建立組件,經過組件來響應 7 ComponentName component = new ComponentName(MainActivity.this, SecondActivity.class); 8 intent.setComponent(component); 9 startActivity(intent); 10 } 11 });
若是寫的簡單一點,監聽事件onClick()方法裏能夠這樣寫:
1 Intent intent = new Intent(); 2 //setClass函數的第一個參數是一個Context對象 3 //Context是一個類,Activity是Context類的子類,也就是說,全部的Activity對象,均可以向上轉型爲Context對象 4 //setClass函數的第二個參數是一個Class對象,在當前場景下,應該傳入須要被啓動的Activity類的class對象 5 intent.setClass(MainActivity.this, SecondActivity.class); 6 startActivity(intent);
再簡單一點,能夠這樣寫:(固然,也是最多見的寫法)
1 Intent intent = new Intent(MainActivity.this,SecondActivity.class); 2 startActivity(intent);
二、Action(動做):用來表現意圖的行動
當平常生活中,描述一個意願或願望的時候,老是有一個動詞在其中。好比:我想「作」三個俯臥撐;我要「寫」 一封情書,等等。在Intent中,Action就是描述作、寫等動做的,當你指明瞭一個Action,執行者就會依照這個動做的指示,接受相關輸入,表現對應行爲,產生符合的輸出。在Intent類中,定義了一批量的動做,好比ACTION_VIEW,ACTION_PICK等, 基本涵蓋了經常使用動做。加的動做越多,越精確。
Action 是一個用戶定義的字符串,用於描述一個 Android 應用程序組件,一個 Intent Filter 能夠包含多個 Action。在 AndroidManifest.xml 的Activity 定義時,能夠在其 <intent-filter >節點指定一個 Action列表用於標識 Activity 所能接受的「動做」。
三、category(類別):用來表現動做的類別
Category屬性也是做爲<intent-filter>子元素來聲明的。例如:
<intent-filter>
<action android:name="com.vince.intent.MY_ACTION"></action>
<category android:name="com.vince.intent.MY_CATEGORY"></category>
<category android:name="android.intent.category.DEFAULT"></category>
</intent-filter>
Action 和category一般是放在一塊兒用的,因此這裏一塊兒介紹一下。咱們來先來舉一個例子:
新建一個工程文件smyh006_Intent01,在默認文件的基礎之上,新建文件SecondActicity.java和activity_second.xml。
緊接着,咱們要到清單文件中進行註冊,打開AndroidManifest.xml,添加SecondActivity的action和category的過濾器:
1 <activity 2 android:name=".SecondActivity">
3 <intent-filter> 4 <action android:name="com.example.smyh006intent01.MY_ACTION"/> 5 <category android:name="android.intent.category.DEFAULT" /> 6 </intent-filter>
7 </activity>
上方代碼,表示SecondActicity能夠匹配第4行的MY_ACTION這個動做,此時,若是在其餘的Acticity經過這個action的條件來查找,那SecondActicity就具有了這個條件。相似於相親時,我要求對方有哪些條件,而後對方這個SecondActicity恰巧知足了這個條件(夠通俗了吧)。
注:若是沒有指定的category,則必須使用默認的DEFAULT(即上方第5行代碼)。
也就是說:只有<action>和<category>中的內容同時可以匹配上Intent中指定的action和category時,這個活動才能響應Intent。若是使用的是DEFAULT這種默認的category,在稍後調用startActivity()方法的時候會自動將這個category添加到Intent中。
如今來修改MainActivity.java中按鈕的點擊事件,代碼以下:
1 button1.setOnClickListener(new OnClickListener() { 2 @Override 3 public void onClick(View v) { 4 //啓動另外一個Activity,(經過action屬性進行查找)
5 Intent intent = new Intent(); 6 //設置動做(實際action屬性就是一個字符串標記而已)
7 intent.setAction("com.example.smyh006intent01.MY_ACTION"); //方法:Intent android.content.Intent.setAction(String action)
8 startActivity(intent); 9 } 10 });
上方代碼中,也能夠換成下面這種簡潔的方式:
1 button1.setOnClickListener(new OnClickListener() { 2 @Override 3 public void onClick(View v) { 4 //啓動另外一個Activity,(經過action屬性進行查找)
5 Intent intent = new Intent("com.example.smyh006intent01.MY_ACTION");//方法: android.content.Intent.Intent(String action)
6 startActivity(intent); 7 } 8 });
上方第5行代碼:在這個Intent中,我並無指定具體哪個Activity,我只是指定了一個action的常量。因此說,隱式Intent的做用就表現的淋漓盡致了。此時,點擊MainActicity中的按鈕,就會跳到SecondActicity中去。
上述狀況只有SecondActicity匹配成功。若是有多個組件匹配成功,就會以對話框列表的方式讓用戶進行選擇。咱們來詳細介紹一下:
咱們新建文件ThirdActicity.java和activity_third.xml,而後在清單文件AndroidManifest.xml中添加ThirdActivity的action和category的過濾器:
1 <activity 2 android:name=".ThirdActivity">
3 <intent-filter>
4 <action android:name="com.example.smyh006intent01.MY_ACTION"/>
5 <category android:name="android.intent.category.DEFAULT" />
6 </intent-filter>
7 </activity>
此時,運行程序,當點擊MainActivity中的按鈕時,彈出以下界面:
相信你們看到了這個界面,應該就一目瞭然了。因而咱們能夠作出以下總結:
在自定義動做時,使用activity組件時,必須添加一個默認的類別
具體的實現爲:
<intent-filter>
<action android:name="com.example.action.MY_ACTION"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
若是有多個組件被匹配成功,就會以對話框列表的方式讓用戶進行選擇。
每一個Intent中只能指定一個action,但卻能指定多個category;類別越多,動做越具體,意圖越明確(相似於相親時,給對方提了不少要求)。
目前咱們的Intent中只有一個默認的category,如今能夠經過intent.addCategory()方法來實現。修改MainActivity中按鈕的點擊事件,代碼以下:
1 button1.setOnClickListener(new OnClickListener() { 2 @Override 3 public void onClick(View v) { 4 //啓動另外一個Activity,(經過action屬性進行查找)
5 Intent intent = new Intent(); 6 //設置動做(實際action屬性就是一個字符串標記而已)
7 intent.setAction("com.example.smyh006intent01.MY_ACTION"); //方法:Intent android.content.Intent.setAction(String action)
8 intent.addCategory("com.example.smyh006intent01.MY_CATEGORY"); 9 startActivity(intent); 10 } 11 });
既然在Intent中增長了一個category,那麼咱們要在清單文件中去聲明這個category,否則程序將沒法運行。代碼以下:
1 android:name=".SecondActivity"> 2 <intent-filter>
3 <action android:name="com.example.smyh006intent01.MY_ACTION"/>
4 <category android:name="android.intent.category.DEFAULT" />
5 <category android:name="com.example.smyh006intent01.MY_CATEGORY" />
6 </intent-filter>
7 </activity>
此時,點擊MainActicity中的按鈕,就會跳到SecondActicity中去。
總結以下:
自定義類別: 在Intent添加類別能夠添加多個類別,那就要求被匹配的組件必須同時知足這多個類別,才能匹配成功。操做Activity的時候,若是沒有類別,須加上默認類別
四、data(數據):表示與動做要操縱的數據
Data是用一個uri對象來表示的,uri表明數據的地址,屬於一種標識符。一般狀況下,咱們使用action+data屬性的組合來描述一個意圖:作什麼
使用隱式Intent,咱們不只能夠啓動本身程序內的活動,還能夠啓動其餘程序的活動,這使得Android多個應用程序之間的功能共享成爲了可能。好比應用程序中須要展現一個網頁,沒有必要本身去實現一個瀏覽器(事實上也不太可能),而是隻須要條用系統的瀏覽器來打開這個網頁就好了。
【實例】打開指定網頁:
MainActivity.java中,監聽器部分的核心代碼以下:
1 button1.setOnClickListener(new OnClickListener() { 2 @Override 3 public void onClick(View v) { 4 Intent intent = new Intent(); 5 intent.setAction(Intent.ACTION_VIEW); 6 Uri data = Uri.parse("http://www.baidu.com"); 7 intent.setData(data); 8 startActivity(intent); 9 } 10 });
固然,上方代碼也能夠簡寫成:
1 button1.setOnClickListener(new OnClickListener() { 2 @Override 3 public void onClick(View v) { 4 Intent intent = new Intent(Intent.ACTION_VIEW); 5 intent.setData(Uri.parse("http://www.baidu.com")); 6 startActivity(intent); 7 } 8 });
第4行代碼:指定了Intent的action是 Intent.ACTION_VIEW,表示查看的意思,這是一個Android系統內置的動做;
第5行代碼:經過Uri.parse()方法,將一個網址字符串解析成一個Uri對象,再調用intent的setData()方法將這個Uri對象傳遞進去。
當點擊按鈕時,將跳到以下界面:
此時, 調用的是系統默認的瀏覽器,也就是說,只調用了這一個組件。如今若是有多個組件獲得了匹配,應該是什麼狀況呢?
咱們修改修改清單文件中對SecondAcivity的聲明:
1 <activity 2 android:name=".SecondActivity">
3 <intent-filter>
4 <action android:name="android.intent.action.VIEW" />
5 <category android:name="android.intent.category.DEFAULT" />
6 <data android:scheme="http" android:host="www.baidu.com"/>
7 </intent-filter>
8 </activity>
如今,SecondActivity也匹配成功了,咱們運行程序,點擊MainActicity的按鈕時,彈出以下界面供咱們選擇:
咱們能夠總結以下:
注:系統默認的瀏覽器並無作出優先級聲明,其優先級默認爲正數。
優先級的配置以下:
在清單文件中修改對SecondAcivity的聲明,即增長一行代碼,經過來android:priority設置優先級,以下:
1 <activity 2 android:name=".SecondActivity">
3 <intent-filter android:priority="-1">
4 <action android:name="android.intent.action.VIEW" />
5 <category android:name="android.intent.category.DEFAULT" />
6 <data android:scheme="http" android:host="www.baidu.com"/>
7 </intent-filter>
8 </activity>
注:
Data屬性的聲明中要指定訪問數據的Uri和MIME類型。能夠在<data>元素中經過一些屬性來設置:
android:scheme、android:path、android:port、android:mimeType、android:host等,經過這些屬性來對應一個典型的Uri格式scheme://host:port/path。例如:http://www.google.com。
五、type(數據類型):對於data範例的描寫
若是Intent對象中既包含Uri又包含Type,那麼,在<intent-filter>中也必須兩者都包含才能經過測試。
Type屬性用於明確指定Data屬性的數據類型或MIME類型,可是一般來講,當Intent不指定Data屬性時,Type屬性纔會起做用,不然Android系統將會根據Data屬性值來分析數據的類型,因此無需指定Type屬性。
data和type屬性通常只須要一個,經過setData方法會把type屬性設置爲null,相反設置setType方法會把data設置爲null,若是想要兩個屬性同時設置,要使用Intent.setDataAndType()方法。
【任務】:data+type屬性的使用
【實例】:播放指定路徑的mp3文件。
具體以下:
新建工程文件smyh006_Intent02,MainActivity.java中按鈕監聽事件部分的代碼以下:
1 button.setOnClickListener(new OnClickListener(){ 2 @Override 3 public void onClick(View v) { 4 Intent intent = new Intent(); 5 intent.setAction(Intent.ACTION_VIEW); 6 Uri data = Uri.parse("file:///storage/sdcard0/平凡之路.mp3"); 7 //設置data+type屬性 8 intent.setDataAndType(data, "audio/mp3"); //方法:Intent android.content.Intent.setDataAndType(Uri data, String type) 9 startActivity(intent); 10 } 11 });
代碼解釋:
第6行:"file://"表示查找文件,後面再加上個人小米手機存儲卡的路徑:/storage/sdcard0,再加上具體歌曲的路徑。
第8行:設置data+type屬性
運行後,當點擊按鈕時,效果以下:
上方界面中,使用的是小米系統默認的音樂播放器。
六、extras(擴展信息):擴展信息
是其它全部附加信息的集合。使用extras能夠爲組件提供擴展信息,好比,若是要執行「發送電子郵件」這個
動做,能夠將電子郵件的標題、正文等保存在extras裏,傳給電子郵件發送組件。
七、Flags(標誌位):指望這個意圖的運行模式
一個程序啓動後系統會爲這個程序分配一個task供其使用,另外同一個task裏面能夠擁有不一樣應用程序的activity。那麼,同一個程序能不能擁有多個task?這就涉及到加載activity的啓動模式,這個須要單獨講一下。
注:android中一組邏輯上在一塊兒的activity被叫作task,本身認爲能夠理解成一個activity堆棧。
3、Activity的啓動模式:(面試注意)
Activity有四種啓動模式:standard、singleTop、singleTask、singleInstance。能夠在AndroidManifest.xml中activity標籤的屬性android:launchMode中設置該activity的加載模式。
注:若是以singleTop模式啓動的activity的一個實例已經存在於返回桟中,可是不在桟頂,那麼它的行爲和standard模式相同,也會建立多個實例;
注:前面三種模式中,每一個應用程序都有本身的返回棧,同一個活動在不一樣的返回棧中入棧時,必然是建立了新的實例。而使用singleInstance模式能夠解決這個問題,在這種模式下會有一個單獨的返回棧來管理這個活動,無論是哪個應用程序來訪問這個活動,都公用同一個返回棧,也就解決了共享活動實例的問題。(此時能夠實現任務之間的切換,而不是單獨某個棧中的實例切換)
其實咱們不在清單文件中設置,只在代碼中經過flag來設置也是能夠的,以下:
1 Intent intent = new Intent(MainActivity.this,SecondActivity.class); 2 //至關於singleTask 3 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); 4 startActivity(intent);
1 Intent intent = new Intent(MainActivity.this,SecondActivity.class); 2 //至關於singleTop 3 intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); 4 startActivity(intent);
3、Intent的常見應用:
一、打開指定網頁:(直接複製的上面的代碼)
MainActivity.java中,監聽器部分的核心代碼以下:
1 button1.setOnClickListener(new OnClickListener() { 2 @Override 3 public void onClick(View v) { 4 Intent intent = new Intent(); 5 intent.setAction(Intent.ACTION_VIEW);//方法:android.content.Intent.Intent(String action) 6 Uri data = Uri.parse("http://www.baidu.com"); 7 intent.setData(data); 8 startActivity(intent); 9 } 10 });
固然,上方代碼也能夠簡寫成:
1 button1.setOnClickListener(new OnClickListener() { 2 @Override 3 public void onClick(View v) { 4 Intent intent = new Intent(Intent.ACTION_VIEW); 5 intent.setData(Uri.parse("http://www.baidu.com")); 6 startActivity(intent); 7 } 8 });
第4行代碼:指定了Intent的action是 Intent.ACTION_VIEW,表示查看的意思,這是一個Android系統內置的動做;
第5行代碼:經過Uri.parse()方法,將一個網址字符串解析成一個Uri對象,再調用intent的setData()方法將這個Uri對象傳遞進去。
或者能夠寫成:
1 button1.setOnClickListener(new OnClickListener() { 2 @Override 3 public void onClick(View v) { 4 Uri uri = Uri.parse("http://www.baidu.com"); 5 Intent intent = new Intent(Intent.ACTION_VIEW,uri);//方法: android.content.Intent.Intent(String action, Uri uri) 6 startActivity(intent); 7 } 8 });
二、打電話:
【方式一】打開撥打電話的界面:
1 Intent intent = new Intent(Intent.ACTION_DIAL); 2 intent.setData(Uri.parse("tel:10086")); 3 startActivity(intent);
運行程序後,點擊按鈕,顯示以下界面:
【方式二】直接撥打電話:
1 Intent intent = new Intent(Intent.ACTION_CALL); 2 intent.setData(Uri.parse("tel:10086")); 3 startActivity(intent);
要使用這個功能必須在配置文件中加入權限:(加一行代碼)
1 <uses-sdk 2 android:minSdkVersion="8" 3 android:targetSdkVersion="16" /> 4 <uses-permission android:name="android.permission.CALL_PHONE"/>
三、發送短信:
【方式一】打開發送短信的界面:action+type
1 Intent intent = new Intent(Intent.ACTION_VIEW); 2 intent.setType("vnd.android-dir/mms-sms"); 3 intent.putExtra("sms_body", "具體短信內容"); //"sms_body"爲固定內容 4 startActivity(intent);
【方式二】打開發短信的界面(同時指定電話號碼):action+data
1 Intent intent = new Intent(Intent.ACTION_SENDTO); 2 intent.setData(Uri.parse("smsto:18780260012")); 3 intent.putExtra("sms_body", "具體短信內容"); //"sms_body"爲固定內容 4 startActivity(intent);
四、播放指定路徑音樂:action+data+type
1 Intent intent = new Intent(Intent.ACTION_VIEW); 2 Uri uri = Uri.parse("file:///storage/sdcard0/平凡之路.mp3"); ////路徑也能夠寫成:"/storage/sdcard0/平凡之路.mp3" 3 intent.setDataAndType(uri, "audio/mp3"); //方法:Intent android.content.Intent.setDataAndType(Uri data, String type) 4 startActivity(intent);
五、卸載程序:action+data(例如點擊按鈕,卸載某個應用程序,根據包名來識別)
注:不管是安裝仍是卸載,應用程序是根據包名package來識別的。
1 Intent intent = new Intent(Intent.ACTION_DELETE); 2 Uri data = Uri.parse("package:com.example.smyh006intent01"); 3 intent.setData(data); 4 startActivity(intent);
六、安裝程序:action+data+type
1 Intent intent = new Intent(Intent.ACTION_VIEW); 2 Uri data = Uri.fromFile(new File("/storage/sdcard0/AndroidTest/smyh006_Intent01.apk")); //路徑不能寫成:"file:///storage/sdcard0/···" 3 intent.setDataAndType(data, "application/vnd.android.package-archive"); //Type的字符串爲固定內容 4 startActivity(intent);
注:第2行的路徑不能寫成:"file:///storage/sdcard0/···",否則報錯以下:
疑問:經過下面的這種方式安裝程序,運行時爲何會出錯呢?
1 //經過指定的action來安裝程序 2 public void installClickTwo(View view){ 3 Intent intent = new Intent(Intent.ACTION_PACKAGE_ADDED); 4 Uri data = Uri.fromFile(new File("/storage/sdcard0/AndroidTest/smyh006_Intent01.apk")); //路徑不能寫成:"file:///storage/sdcard0/···" 5 intent.setData(data); 6 startActivity(intent); 7 }
綜上所述,完整版代碼以下:
1 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 2 xmlns:tools="http://schemas.android.com/tools" 3 android:layout_width="match_parent" 4 android:layout_height="match_parent" 5 android:paddingBottom="@dimen/activity_vertical_margin" 6 android:paddingLeft="@dimen/activity_horizontal_margin" 7 android:paddingRight="@dimen/activity_horizontal_margin" 8 android:paddingTop="@dimen/activity_vertical_margin" 9 android:orientation="vertical" 10 tools:context=".MainActivity" > 11 <Button 12 android:id="@+id/button1_browsePage" 13 android:layout_width="match_parent" 14 android:layout_height="wrap_content" 15 android:onClick="browsePageClick" 16 android:text="打開指定網頁"/> 17 <Button 18 android:id="@+id/button2_openDialPage" 19 android:layout_width="match_parent" 20 android:layout_height="wrap_content" 21 android:onClick="openDialPageClick" 22 android:text="打開撥號面板"/> 23 <Button 24 android:id="@+id/button3_dialPhone" 25 android:layout_width="match_parent" 26 android:layout_height="wrap_content" 27 android:onClick="dialPhoneClick" 28 android:text="直接撥打指定號碼"/> 29 <Button 30 android:id="@+id/button4_openMsgPage" 31 android:layout_width="match_parent" 32 android:layout_height="wrap_content" 33 android:onClick="openMsgPageClick" 34 android:text="打開發短信的界面"/> 35 36 37 <Button 38 android:id="@+id/button5_sendMsg" 39 android:layout_width="match_parent" 40 android:layout_height="wrap_content" 41 android:onClick="sendMsgClick" 42 android:text="給指定的人發短信"/> 43 44 <Button 45 android:id="@+id/button6_playMusic" 46 android:layout_width="match_parent" 47 android:layout_height="wrap_content" 48 android:onClick="playMusicClick" 49 android:text="播放指定路徑音樂"/> 50 51 <Button 52 android:id="@+id/button7_uninstall" 53 android:layout_width="match_parent" 54 android:layout_height="wrap_content" 55 android:onClick="uninstallClick" 56 android:text="卸載程序"/> 57 <Button 58 android:id="@+id/button8_install" 59 android:layout_width="match_parent" 60 android:layout_height="wrap_content" 61 android:onClick="installClick" 62 android:text="安裝程序"/> 63 64 65 </LinearLayout>
MainActivity.java代碼以下:
1 package com.example.m06intent01; 2 import java.io.File; 3 import android.app.Activity; 4 import android.content.Intent; 5 import android.net.Uri; 6 import android.os.Bundle; 7 import android.view.Menu; 8 import android.view.View; 9 public class MainActivity extends Activity { 10 @Override 11 protected void onCreate(Bundle savedInstanceState) { 12 super.onCreate(savedInstanceState); 13 setContentView(R.layout.activity_main); 14 } 15 //打開指定網頁 16 public void browsePageClick(View view){ 17 Intent intent = new Intent(Intent.ACTION_VIEW); 18 intent.setData(Uri.parse("http://www.baidu.com/")); 19 startActivity(intent); 20 21 } 22 23 //打開撥號面板 24 public void openDialPageClick(View view){ 25 Intent intent = new Intent(Intent.ACTION_DIAL); 26 intent.setData(Uri.parse("tel:10086")); 27 startActivity(intent); 28 } 29 30 //直接撥打指定號碼 31 public void dialPhoneClick(View view){ 32 Intent intent = new Intent(Intent.ACTION_CALL); 33 intent.setData(Uri.parse("tel:10086")); 34 startActivity(intent); 35 } 36 37 //打開發短信的界面:action+type 38 public void openMsgPageClick(View view){ 39 Intent intent = new Intent(Intent.ACTION_VIEW); 40 intent.setType("vnd.android-dir/mms-sms"); 41 intent.putExtra("sms_body", "具體短信內容"); //"sms_body"爲固定內容 42 startActivity(intent); 43 } 44 45 //打開發短信的界面(指定電話號碼):action+data 46 public void sendMsgClick(View view){ 47 Intent intent = new Intent(Intent.ACTION_SENDTO); 48 intent.setData(Uri.parse("smsto:18780260012")); 49 intent.putExtra("sms_body", "具體短信內容"); //"sms_body"爲固定內容 50 startActivity(intent); 51 } 52 53 //播放指定路徑音樂 54 public void playMusicClick(View view){ 55 Intent intent = new Intent(Intent.ACTION_VIEW); 56 Uri uri = Uri.parse("file:///storage/sdcard0/平凡之路.mp3"); //路徑也能夠寫成:"/storage/sdcard0/平凡之路.mp3" 57 intent.setDataAndType(uri, "audio/mp3"); //方法:Intent android.content.Intent.setDataAndType(Uri data, String type) 58 startActivity(intent); 59 } 60 61 //卸載某個應用程序,根據包名來識別 62 public void uninstallClick(View view){ 63 Intent intent = new Intent(Intent.ACTION_DELETE); 64 Uri data = Uri.parse("package:com.example.smyh006intent01"); 65 intent.setData(data); 66 startActivity(intent); 67 } 68 69 //安裝某個應用程序,根據apk的文件名來識別 70 public void installClick(View view){ 71 Intent intent = new Intent(Intent.ACTION_VIEW); 72 Uri data = Uri.fromFile(new File("/storage/sdcard0/AndroidTest/smyh006_Intent01.apk")); //路徑不能寫成:"file:///storage/sdcard0/···" 73 intent.setDataAndType(data, "application/vnd.android.package-archive"); //Type的字符串爲固定內容 74 startActivity(intent); 75 } 76 77 78 @Override 79 public boolean onCreateOptionsMenu(Menu menu) { 80 // Inflate the menu; this adds items to the action bar if it is present. 81 getMenuInflater().inflate(R.menu.main, menu); 82 return true; 83 } 84 85 }
運行後,主界面以下:
【工程文件】
連接:http://pan.baidu.com/s/1sjFdfvn
密碼:qnix