最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

Android開發(fā)學習教程(21)- Android Intent意圖用法

2023-01-28 14:54 作者:考研保研直通車  | 我要投稿

—— 對未來的最大慷慨,是把一切獻給現(xiàn)在。

Intent是什么

Android中提供了Intent機制來協(xié)助應用間的交互與數(shù)據(jù)的傳遞,不僅可用于應用程序之間,也可用于應用程序內部的activity、service、broadcast receiver之間的交互。

1、要跳轉到一個新的Activity

1
startActivity(Intent?intent)

或帶返回值的跳轉

1
startActivityForResult(Intent intent,?int?requestCode)

2、要啟動一個新的Service,或向一個已有的Service傳遞新的指令

1
startService(Intent service)

1
bindService(@RequiresPermission?Intent service,?@NonNull?ServiceConnection conn,?@BindServiceFlags?int?flags)

3、發(fā)送廣播

1
sendBroadcast(@RequiresPermission?Intent intent)

Intent有什么用

用來協(xié)助應用間的交互與數(shù)據(jù)的傳遞。

Intent怎么用

Intent分為顯示和隱示。

顯式Intent直接用組件的名稱定義目標組件,即直接指定需要打開的activity對應的類。

1)構造方法傳入Component,最常用的方式:

1
2
Intent intent =?new?Intent(this, SecondActivity.class);
startActivity(intent);

2)setComponent 方法

1
2
3
4
5
6
ComponentName componentName =?new?ComponentName(this, SecondActivity.class);
// 或 ComponentName componentName = new ComponentName(this, "com.example.app.SecondActivity");
// 或 ComponentName componentName = new ComponentName(this.getPackageName(), "com.example.app.SecondActivity");?
Intent intent =?new?Intent();?
intent.setComponent(componentName);
startActivity(intent);

3)setClass / setClassName 方法

1
2
3
Intent intent =?new?Intent();???
intent.setClass(this, SecondActivity.class);??// 或 intent.setClassName(this, "com.example.app.SecondActivity");? // 或 intent.setClassName(this.getPackageName(),"com.example.app.SecondActivity");???????????
startActivity(intent);?

顯式Intent通過Component可以直接設置需要調用的Activity類,可以唯一確定一個Activity,意圖特別明確,所以是顯式的。設置這個類的方式可以是Class對象(如SecondActivity.class),也可以是包名加類名的字符串(如”com.example.app.SecondActivity”)。

隱式,不明確指定啟動哪個Activity,而是設置Action、Data、Category,讓系統(tǒng)來篩選出合適的Activity。篩選是根據(jù)所有的來篩選。

下面以Action為例:

AndroidManifest.xml文件中,首先被調用的Activity要有一個帶有并且包含的Activity,設定它能處理的Intent,并且category設為”android.intent.category.DEFAULT”。action的name是一個字符串,可以自定義,例如這里設成為”mark”:

1
2
3
4
5
6
7
<activity
????android:name="com.example.app.SecondActivity">?
????<intent-filter>?
????????<action?android:name="mark"/>?
????????<category?android:name="android.intent.category.DEFAULT"/>?
</intent-filter>
</activity>

然后,在MainActivity,才可以通過這個action name找到上面的Activity。下面兩種方式分別通過setAction和構造方法方法設置Action,兩種方式效果相同。

1)setAction 方法

1
2
3
Intent intent =?new?Intent();?
intent.setAction("mark");
startActivity(intent);

2)構造方法直接設置 Action

1
2
Intent intent =?new?Intent("mark");
startActivity(intent);??

為了防止應用程序之間互相影響,一般命名方式是包名+Action名,例如這里命名”mark”就很不合理了,就應該改成”com.example.app.Test”。

Intent屬性

Intent7大屬性:

1
2
3
4
5
6
7
component(組件):目的組件
action(動作):用來表現(xiàn)意圖的行動
category(類別):用來表現(xiàn)動作的類別
data(數(shù)據(jù)):表示與動作要操縱的數(shù)據(jù)
type(數(shù)據(jù)類型):對于data范例的描寫
extras(擴展信息):擴展信息
Flags(標志位):期望這個意圖的運行模式

1. Action:用來表現(xiàn)意圖的行動

一個字符串變量,可以用來指定Intent要執(zhí)行的動作類別。常見的action有:

1
2
3
4
5
6
7
8
9
10
11
12
13
ACTION_MAIN:表示程序入口
ACTION_VIEW:自動以最合適的方式顯示Data
ACTION_EDIT:提供可以的
ACTION_PICK:選擇一個一條Data,并且返回它
ACTION_DAIL:顯示Data指向的號碼在撥號界面Dailer上
ACTION_CALL:撥打Data指向的號碼
ACTION_SEND:發(fā)送Data到指定的地方
ACTION_SENDTO:發(fā)送多組Data到指定的地方
ACTION_RUN:運行Data,不管Data是什么
ACTION_SEARCH:執(zhí)行搜索
ACTION_WEB_SEARCH:執(zhí)行網(wǎng)上搜索
ACRION_SYNC:執(zhí)同步一個Data
ACTION_INSERT:添加一個空的項到容器中

2. Data:表示與動作要操縱的數(shù)據(jù)

一個URI對象是一個引用的data的表現(xiàn)形式,或是data的MIME類型;data的類型由Intent的action決定。

3. Category:用來表現(xiàn)動作的類別

一個包含Intent額外信息的字符串,表示哪種類型的組件來處理這個Intent。任何數(shù)量的Category 描述都可以添加到Intent中,但是很多intent不需要category,下面列舉一些常用的category:

1
2
3
4
5
CATEGORY_DEFAULT:把一個組件Component設為可被implicit啟動的
CATEGORY_LAUNCHER:把一個action設置為在頂級執(zhí)行。并且包含這個屬性的Activity所定義的icon將取代application中定義的icon
CATEGORY_BROWSABLE:當Intent指向網(wǎng)絡相關時,必須要添加這個類別
CATEGORY_HOME:使Intent指向Home界面
CATEGORY_PREFERENCE:定義的Activity是一個偏好面板Preference Panel

4. Type:指定數(shù)據(jù)類型

一般Intent的數(shù)據(jù)類型能夠根據(jù)數(shù)據(jù)本身進行判定,但是通過設置這個屬性,可以強制采用顯式指定的類型而不再進行推導。

5. Component:目的組件

指定Intent的目標組件名稱,當指定了這個屬性后,系統(tǒng)將跳過匹配其他屬性,而直接匹配這個屬性來啟動對應的組件。

6. Extra:擴展信息/傳參

Intent可以攜帶的額外 key-value 數(shù)據(jù),你可以通過調用putExtra()方法設置數(shù)據(jù),每一個 key對應一個 value數(shù)據(jù)。你也可以通過創(chuàng)建 Bundle對象來存儲所有數(shù)據(jù),然后通過調用putExtras()方法來設置數(shù)據(jù)。

7. Flag:期望這個意圖的運行模式

用來指示系統(tǒng)如何啟動一個Activity,可以通過setFlags()或者addFlags()可以把標簽flag用在Intent中。

1
2
3
4
FLAG_ACTIVITY_CLEAR_TOP:相當于SingleTask
FLAGE_ACTIVITY_SINGLE_TOP:相當于SingleTop
FLAG_ACTIVITY_NEW_TASK:類似于SingleInstance
FLAG_ACTIVITY_NO_HISTORY:當離開該Activity后,該Activity將被從任務棧中移除

調用撥號程序

1
2
3
4
5
6
7
8
9
????// 調用撥打電話,給10010撥打電話
????Uri uri = Uri.parse("tel:10010");
????Intent intent =?new?Intent(Intent.ACTION_DIAL, uri);
????startActivity(intent);
????// 直接撥打電話,需要加上權限 <uses-permission id="android.permission.CALL_PHONE">
????Uri callUri = Uri.parse("tel:10010");
????Intent intent1 =?new?Intent(Intent.ACTION_CALL, callUri);
????startActivity(intent1);
</uses-permission>

發(fā)送短信或彩信

1
2
3
4
5
6
7
8
9
10
11
12
// 給10010發(fā)送內容為“Hello”的短信
Uri uri = Uri.parse("smsto:10010");
Intent intent =?new?Intent(Intent.ACTION_SENDTO, uri);
intent.putExtra("sms_body",?"Hello");
startActivity(intent);
// 發(fā)送彩信(相當于發(fā)送帶附件的短信)
Intent intent =?new?Intent(Intent.ACTION_SEND);
intent.putExtra("sms_body",?"Hello");
Uri uri = Uri.parse("content://media/external/images/media/23");
intent.putExtra(Intent.EXTRA_STREAM, uri);
intent.setType("image/png");
startActivity(intent);

通過瀏覽器打開網(wǎng)頁

1
2
3
Uri uri = Uri.parse("https://www.androidstudy.net");
Intent intent =?new?Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);

發(fā)送電子郵件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// 給someone@domain.com發(fā)郵件
Uri uri = Uri.parse("mailto:someone@domain.com");
Intent intent =?new?Intent(Intent.ACTION_SENDTO, uri);
startActivity(intent);
// 給someone@domain.com發(fā)郵件發(fā)送內容為“Hello”的郵件
Intent intent =?new?Intent(Intent.ACTION_SEND);
intent.putExtra(Intent.EXTRA_EMAIL,?"someone@domain.com");
intent.putExtra(Intent.EXTRA_SUBJECT,?"Subject");
intent.putExtra(Intent.EXTRA_TEXT,?"Hello");
intent.setType("text/plain");
startActivity(intent);
// 給多人發(fā)郵件
Intent intent=new?Intent(Intent.ACTION_SEND);
String[] tos = {"1@abc.com",?"2@abc.com"};?// 收件人
String[] ccs = {"3@abc.com",?"4@abc.com"};?// 抄送
String[] bccs = {"5@abc.com",?"6@abc.com"};?// 密送
intent.putExtra(Intent.EXTRA_EMAIL, tos);
intent.putExtra(Intent.EXTRA_CC, ccs);
intent.putExtra(Intent.EXTRA_BCC, bccs);
intent.putExtra(Intent.EXTRA_SUBJECT,?"Subject");
intent.putExtra(Intent.EXTRA_TEXT,?"Hello");
intent.setType("message/rfc822");
startActivity(intent);

顯示地圖與路徑規(guī)劃

1
2
3
4
5
6
7
8
// 打開地圖中國北京位置(北緯39.9,東經(jīng)116.3)
Uri uri = Uri.parse("geo:39.9,116.3");
Intent intent =?new?Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);
// 路徑規(guī)劃:從北京某地(北緯39.9,東經(jīng)116.3)到上海某地(北緯31.2,東經(jīng)121.4)
Uri uri = Uri.parse("http://maps.google.com/maps?f=d&saddr=39.9?116.3&daddr=31.2 121.4");
Intent intent =?new?Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);

播放多媒體

1
2
3
4
5
6
7
8
Intent intent =?new?Intent(Intent.ACTION_VIEW);
Uri uri = Uri.parse("file:///sdcard/foo.mp3");
intent.setDataAndType(uri,?"audio/mp3");
startActivity(intent);
//或者
Uri uri = Uri.withAppendedPath(MediaStore.Audio.Media.INTERNAL_CONTENT_URI,?"1");
Intent intent =?new?Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);

選擇圖片

1
2
3
Intent intent =?new?Intent(Intent.ACTION_GET_CONTENT);
intent.setType("image/*");
startActivityForResult(intent,?2);

拍照

1
2
3
4
5
6
7
// 打開拍照程序
Intent intent =?new?Intent(MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(intent,?1);
// 取出照片數(shù)據(jù)
Bundle extras = intent.getExtras();
Bitmap bitmap = (Bitmap) extras.get("data");

獲取并剪切圖片

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// 獲取并剪切圖片
Intent intent =?new?Intent(Intent.ACTION_GET_CONTENT);
intent.setType("image/*");
intent.putExtra("crop",?"true");?// 開啟剪切
intent.putExtra("aspectX",?1);?// 剪切的寬高比為1:2
intent.putExtra("aspectY",?2);
intent.putExtra("outputX",?20);?// 保存圖片的寬和高
intent.putExtra("outputY",?40);
intent.putExtra("output", Uri.fromFile(new?File("/mnt/sdcard/temp")));?// 保存路徑
intent.putExtra("outputFormat",?"JPEG");// 返回格式
startActivityForResult(intent,?0);
// 剪切特定圖片
Intent intent =?new?Intent("com.android.camera.action.CROP");
intent.setClassName("com.android.camera",?"com.android.camera.CropImage");
intent.setData(Uri.fromFile(new?File("/mnt/sdcard/temp")));
intent.putExtra("outputX",?1);?// 剪切的寬高比為1:2
intent.putExtra("outputY",?2);
intent.putExtra("aspectX",?20);?// 保存圖片的寬和高
intent.putExtra("aspectY",?40);
intent.putExtra("scale",?true);
intent.putExtra("noFaceDetection",?true);
intent.putExtra("output", Uri.parse("file:///mnt/sdcard/temp"));
startActivityForResult(intent,?0);

打開手機應用市場

1
2
3
4
// 打開手機應用市場,直接進入該程序的詳細頁面
Uri uri = Uri.parse("market://details?id="?+ packageName);
Intent intent =?new?Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);

安裝程序

1
2
3
4
String fileName = Environment.getExternalStorageDirectory() +?"/myApp.apk";??
Intent intent =?new?Intent(Intent.ACTION_VIEW);??
intent.setDataAndType(Uri.fromFile(new?File(fileName)),"application/vnd.android.package-archive");
startActivity(intent);

卸載程序

1
2
3
Uri uri = Uri.parse("package:"?+ packageName);??
Intent intent =?new?Intent(Intent.ACTION_DELETE, uri);
startActivity(intent);

進入系統(tǒng)設置界面

1
2
Intent intent =?new?Intent(android.provider.Settings.ACTION_SETTINGS);
startActivity(intent);

源碼鏈接:https://yunjunet.cn/876799.html

Android開發(fā)學習教程(21)- Android Intent意圖用法的評論 (共 條)

分享到微博請遵守國家法律
崇明县| 廊坊市| 资阳市| 沙坪坝区| 保亭| 株洲市| 北碚区| 蛟河市| 衡阳县| 巴彦淖尔市| 苍梧县| 四平市| 绍兴县| 汉寿县| 苗栗市| 山丹县| 德清县| 阳朔县| 织金县| 灵宝市| 达日县| 新竹市| 三台县| 奉贤区| 长治市| 阿坝县| 洛隆县| 英超| 元朗区| 宜都市| 宁波市| 交城县| 余庆县| 米脂县| 仁布县| 彭山县| 福安市| 禄劝| 牡丹江市| 墨玉县| 巫溪县|