1,顯示匹配(Explicit): html
1
2
3
4
5
6
7
8
9
10
11
12
13
|
public
TestB extents Activity
{
.........
};
public
class
Testextends
Activity
{
......
public
void
switchActivity()
{
Intent i =new
Intent(Test.this, TestB.class);
this.startActivity(i);
}
}
|
2,隱式匹配(Implicit):
隱式匹配,首先要匹配Intent的幾項值:Action, Category, Data/Type,Component。若是填寫了Componet就是上例中的Test.class)這就造成了顯示匹配。因此此部分只講前幾種匹配。匹配規則爲最大匹配規則,
1,若是你填寫了Action,若是有一個程序的Manifest.xml中的某一個Activity的IntentFilter段中定義了包含了相同的Action那麼這個Intent就與這個目標Action匹配,若是這個Filter段中沒有定義Type,Category,那麼這個Activity就匹配了。可是若是手機中有兩個以上的程序匹配,那麼就會彈出一個對話可框來提示說明。
Action的值在Android中有不少預約義,若是你想直接轉到你本身定義的Intent接收者,你能夠在接收者的IntentFilter中加入一個自定義的Action值(同時要設定Category值爲"android.intent.category.DEFAULT"),在你的Intent中設定該值爲Intent的Action,就直接能跳轉到你本身的Intent接收者中。由於這個Action在系統中是惟一的。 java
2,data/type,你能夠用Uri來作爲data,好比Uri uri = Uri.parse(http://www.google.com);
Intent i = new Intent(Intent.ACTION_VIEW,uri);手機的Intent分發過程當中,會根據http://www.google.com 的scheme判斷出數據類型type
手機的Brower則能匹配它,在Brower的Manifest.xml中的IntenFilter中首先有ACTION_VIEW Action,也能處理http:的type,
3,至於分類Category,通常不要去在Intent中設置它,若是你寫Intent的接收者,就在Manifest.xml的Activity的IntentFilter中包含android.category.DEFAULT,這樣全部不設置Category(Intent.addCategory(String c);)的Intent都會與這個Category匹配。
4,extras(附加信息),是其它全部附加信息的集合。使用extras能夠爲組件提供擴展信息,好比,若是要執行「發送電子郵件」這個動做,能夠將電子郵件的標題、正文等保存在extras裏,傳給電子郵件發送組件。 android
用 Intent 激活電話撥號程序 web
這裏使用一個Intent打開電話撥號程序,Intent的行爲是ACTION_DIAL,同時在Intent中傳遞被呼叫人的電話號碼。 瀏覽器
在用戶界面中加入一個Button按鈕,編輯res/layout/main.xml文件: app
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?xml version="1.0"
encoding="utf-8"?>
<LinearLayout
xmlns:android="
http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<Button
android:id ="@+id/button_id"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/button"
/>
</LinearLayout><span style="font-family: verdana, 'courier new'; font-size: 14pt;"><span style="white-space: normal;">
</span></span>
|
咱們把Button的id設置爲button_id, 同時將Button顯示在界面上的文字設置爲res/string.xml/下的Button,打開res/string.xml,把button的內容設置爲「撥號」: ide
1
2
3
4
5
6
|
<?xml version="1.0"
encoding="utf-8"?>
<resources>
<string name="button">撥號</string>
<string name="app_name">TinyDialer</string>
</resources><span style="font-family: verdana, 'courier new'; font-size: 14pt;"><span style="white-space: normal;">
</span></span>
|
建立TinyDialer的Activity ui
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
public
class
TinyDialerextends
Activity {
/** Called when the Activity is first created. */
@Override
public
void
onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
final
Button button = (Button) findViewById(R.id.button_id);
button.setOnClickListener(new
Button.OnClickListener() {
@Override
public
void
onClick(View b) {
Intent i =new
Intent(Intent.ACTION_DIAL,
Uri.parse("
tel://13800138000"));
startActivity(i);
}
});
}
}
|
用Intent調用系統中常常被用到的組件 this
1,web瀏覽器 google
Uri uri= Uri.parse("http://kuikui.javaeye.com");
returnIt = new Intent(Intent.ACTION_VIEW, uri);
2,地圖
Uri mapUri = Uri.parse("geo:38.899533,-77.036476");
returnIt = new Intent(Intent.ACTION_VIEW, mapUri);
3,調撥打電話界面
Uri telUri = Uri.parse("tel:100861");
returnIt = new Intent(Intent.ACTION_DIAL, telUri);
4,直接撥打電話
Uri callUri = Uri.parse("tel:100861");
returnIt = new Intent(Intent.ACTION_CALL, callUri);
5,卸載
Uri uninstallUri = Uri.fromParts("package", "xxx", null);
returnIt = new Intent(Intent.ACTION_DELETE, uninstallUri);
6,安裝
Uri installUri = Uri.fromParts("package", "xxx", null);
returnIt = new Intent(Intent.ACTION_PACKAGE_ADDED, installUri);
7,播放
Uri playUri = Uri.parse("file:///sdcard/download/everything.mp3");
returnIt = new Intent(Intent.ACTION_VIEW, playUri);
8,掉用發郵件
Uri emailUri = Uri.parse("mailto:shenrenkui@gmail.com");
returnIt = new Intent(Intent.ACTION_SENDTO, emailUri);
9,發郵件
returnIt = new Intent(Intent.ACTION_SEND);
String[] tos = { "shenrenkui@gmail.com" };
String[] ccs = { "shenrenkui@gmail.com" };
returnIt.putExtra(Intent.EXTRA_EMAIL, tos);
returnIt.putExtra(Intent.EXTRA_CC, ccs);
returnIt.putExtra(Intent.EXTRA_TEXT, "body");
returnIt.putExtra(Intent.EXTRA_SUBJECT, "subject");
returnIt.setType("message/rfc882");
Intent.createChooser(returnIt, "Choose Email Client");
10,發短信
Uri smsUri = Uri.parse("tel:100861");
returnIt = new Intent(Intent.ACTION_VIEW, smsUri);
returnIt.putExtra("sms_body", "shenrenkui");
returnIt.setType("vnd.android-dir/mms-sms");
11,直接發郵件
Uri smsToUri = Uri.parse("smsto://100861");
returnIt = new Intent(Intent.ACTION_SENDTO, smsToUri);
returnIt.putExtra("sms_body", "shenrenkui");
12,發彩信
Uri mmsUri = Uri.parse("content://media/external/images/media/23");
returnIt = new Intent(Intent.ACTION_SEND);
returnIt.putExtra("sms_body", "shenrenkui");
returnIt.putExtra(Intent.EXTRA_STREAM, mmsUri);
returnIt.setType("image/png");