1. 程式人生 > >Android Intent用法詳解

Android Intent用法詳解

如果是從BroadcastReceiver 啟動一個新的Activity , 不要忘記i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

public class MyReceiver extends BroadcastReceiver{
public static final String action=”acc”;
public void onReceive(Context context, Intent intent) {
Intent i=new Intent(context,Receivered.class);
i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(i);
}
}


1. 指定act ion 和type
// SIM import

Intent importIntent = new Intent(Intent.ACTION_VIEW);
importIntent.setType(“vnd.android.cursor.item/sim-contact”);
importIntent.setClassName(“com.android.phone”, “com.android.phone.SimContacts”);
menu.add(0, 0, 0, R.string.importFromSim)
.setIcon(R.drawable.ic_menu_import_contact)
.setIntent(importIntent);


2. 指定act ion, da ta和type
(1)隱式查詢type
示例程式碼:

uri: content://simcontacts/simPeople/(id)
intent = new Intent(“android.intent.action.SIMEDIT”,uri);
startActivity(intent);

程式會根據data中的uri去查詢匹配的type(必須的)
provider中的getType()
case SIM_PEOPLE_ID:
return “vnd.android.cursor.item/sim-contact”;

配置檔案中的filter設定
AndroidManifest.xml
也可以自己設定type,但只能使用 setDataAndType()

3. 其他設定intent的屬性方式

Intent setComponent(ComponentName component)
Intent setClassName(Context packageContext, String className)
Intent setClassName(String packageName, String className)
Intent setClass(Context packageContext, Class cls)


開啟其他APK檔案的ACTIVITY
Intent mIntent = new Intent();
ComponentName comp = new ComponentName(“com.android.a”,”com.android.a.AbcActivity” );
mIntent.setComponent(comp);
mIntent.setAction(“android.intent.action.MAIN”);
startActivity(mIntent);


顯示網頁:

 Uri uri = Uri.parse(“http://www.google.com”);
Intent it = new Intent(Intent.ACTION_VIEW,uri);
startActivity(it);


顯示地圖:

Uri uri = Uri.parse(“geo:38.899533,-77.036476″);
Intent it = new Intent(Intent.Action_VIEW,uri);
startActivity(it);


路徑規劃:

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);

撥打電話:
呼叫撥號程式

Uri uri = Uri.parse(“tel:xxxxxx”);
 Intent it = new Intent(Intent.ACTION_DIAL, uri);
 startActivity(it);

直接撥號
 Uri uri = Uri.parse(“tel.xxxxxx”);
Intent it =new Intent(Intent.ACTION_CALL,uri);


要使用這個必須在配置檔案中加入許可權

傳送SMS/MMS
呼叫傳送簡訊的程式

Intent it = new Intent(Intent.ACTION_VIEW);
it.putExtra(“sms_body”, “The SMS text”);
 it.setType(“vnd.android-dir/mms-sms”);
startActivity(it);


傳送簡訊

Uri uri = Uri.parse(“smsto:0800000123″);
Intent it = new Intent(Intent.ACTION_SENDTO, uri);
it.putExtra(“sms_body”, “The SMS text”);
startActivity(it);


傳送彩信

 Uri uri = Uri.parse(“content://media/external/images/media/23″);
 Intent it = new Intent(Intent.ACTION_SEND);
 it.putExtra(“sms_body”, “some text”);
 it.putExtra(Intent.EXTRA_STREAM, uri);
 it.setType(“image/png”);
 startActivity(it);


傳送Email

Uri uri = Uri.parse(“mailto:[email protected]”);
Intent it = new Intent(Intent.ACTION_SENDTO, uri);
startActivity(it);


Intent it = new Intent(Intent.ACTION_SEND);
 it.putExtra(Intent.EXTRA_EMAIL, “[email protected]”);
it.putExtra(Intent.EXTRA_TEXT, “The email body text”);
it.setType(“text/plain”);
startActivity(Intent.createChooser(it, “Choose Email Client”));


Intent it=new Intent(Intent.ACTION_SEND);
 String[] tos={“[email protected]”};
 String[] ccs={“[email protected]”};
it.putExtra(Intent.EXTRA_EMAIL, tos);
it.putExtra(Intent.EXTRA_CC, ccs);
it.putExtra(Intent.EXTRA_TEXT, “The email body text”);
it.putExtra(Intent.EXTRA_SUBJECT, “The email subject text”);
it.setType(“message/rfc822″);
startActivity(Intent.createChooser(it, “Choose Email Client”));


新增附件

Intent it = new Intent(Intent.ACTION_SEND);
it.putExtra(Intent.EXTRA_SUBJECT, “The email subject text”);
it.putExtra(Intent.EXTRA_STREAM, “file:///sdcard/mysong.mp3″);
sendIntent.setType(“audio/mp3″);
startActivity(Intent.createChooser(it, “Choose Email Client”));


播放多媒體

//方法1.

Uri uri = Uri.parse(“file:///sdcard/song.mp3″);
Intent it = new Intent(Intent.ACTION_VIEW, uri);
// it.addFlags(it.FLAG_ACTIVITY_NEW_TASK);//非必須選項
it.setDataAndType(uri, “audio/mp3″);
context.startActivity(it);


//方法2.

 Intent it = new Intent(Intent.ACTION_VIEW);
 Uri uri = Uri.parse(“file:///sdcard/song.mp3″);
 it.setDataAndType(uri, “audio/mp3″);
 startActivity(it);


//方法3. 啟動一個播放器並播放一個系統聲音

Uri uri = Uri.withAppendedPath(MediaStore.Audio.Media.INTERNAL_CONTENT_URI, “1″);
 Intent it = new Intent(Intent.ACTION_VIEW, uri);
 startActivity(it);
Uninstall 程式
 Uri uri = Uri.fromParts(“package”, strPackageName, null);
 Intent it = new Intent(Intent.ACTION_DELETE, uri);
 startActivity(it);


uninstall apk

Uri uninstallUri = Uri.fromParts(“package”, “xxx”, null);
returnIt = new Intent(Intent.ACTION_DELETE, uninstallUri);


install apk

 Uri installUri = Uri.fromParts(“package”, “xxx”, null);
returnIt = new Intent(Intent.ACTION_PACKAGE_ADDED, installUri);


play audio

Uri playUri = Uri.parse(“file:///sdcard/download/everything.mp3″);
returnIt = new Intent(Intent.ACTION_VIEW, playUri);

哈,原來你還沒貼完,我再加個:

//傳送附件

 Intent it = new Intent(Intent.ACTION_SEND);
 it.putExtra(Intent.EXTRA_SUBJECT, “The email subject text”);
it.putExtra(Intent.EXTRA_STREAM, “file:///sdcard/eoe.mp3″);
sendIntent.setType(“audio/mp3″);
startActivity(Intent.createChooser(it, “Choose Email Client”));


market相關

//搜尋應用

Uri uri = Uri.parse(“market://search?q=pname:pkg_name”);
 Intent it = new Intent(Intent.ACTION_VIEW, uri);
startActivity(it);
//where pkg_name is the full package path for an application


//顯示指定應用的詳細頁面(這個好像不支援了,找不到app_id)

Uri uri = Uri.parse(“market://details?id=app_id”);
Intent it = new Intent(Intent.ACTION_VIEW, uri);
startActivity(it);


相關推薦

Android Intent用法

如果是從BroadcastReceiver 啟動一個新的Activity , 不要忘記i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);public class MyReceiver extends BroadcastReceiver{ pu

Android getevent用法

getevent 指令用於獲取 input 輸入事件,比如獲取按鍵上報資訊、獲取觸控式螢幕上報資訊等。 指令原始碼路徑:/system/core/toolbox/getevent.c getevent -h:檢視 getevent 幫助資訊 [email pr

Android Intent機制

什麼是Intent  Intent 是一個將要執行的動作的抽象描述,一般來說是作為引數來使用,由Intent來協助完成android各個元件之間的通訊。比如說呼叫startActivity()來啟動一個activity,或者由broadcaseIntent()來傳遞給

Android.mk用法(一)

       Android.mk是Android提供的一個makefile檔案,可以將原始檔分組為模組。用來引用的標頭檔案目錄、需要編譯的*.c/*.cpp檔案、jni原始檔、指定編譯生成*.so共享庫檔案或者*.a靜態庫檔案,可以定義一個或多個模組,也可以多個模組中使用同

Android startActivityForResult用法

一、如果想在Activity中得到新開啟Activity 關閉後返回的資料,需要使用系統提供的startActivityForResult(Intent intent, int requestCode)方法開啟新的Activity,新的Activity 關閉後會向前面的Activity傳回資料,為了得到傳

Android零基礎入門第80節:Intent 屬性(下)

gre save top log 單選按鈕 bar 手機 彩信 ttext 上一期學習了Intent的前三個屬性,本期接著學習其余四個屬性,以及Android系統常用內置組件的啟動。 四、Data和Type屬性 Data屬性通常用於向Action屬性提

Android總結篇——Intent機制及示例總結

ets mp3 pro domain 一般來說 ssa star wrap 無線 一.Intent介紹: Intent的中文意思是“意圖,意向”,在Android中提供了Intent機制來協助應用間的交互與通訊,Intent負責對應用中一次操作的動 作、動作涉及

Android筆記02:Intent機制

tar 中一 定義 tty 一段 AI new 例如 pac 一、什麽是Intent? Intent在Android中提供了Intent機制來協助應用間的交互與通訊,Intent負責對應用中一次操作的動作、動作涉及數據、附加數據進行描述,Android則根據此Intent的

android widget ImageView用法

分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!http://blog.csdn.net/jiangjunshow 也歡迎大家轉載本篇文章。分享知識,造福人民,實現我們中華民族偉大復興!        

Android之viewstub用法及實現延遲載入

上一篇的佈局中間就用了viewstub這個控制元件,現在來說一下其作用和用法" ViewStub 是一個不可見的,大小為0的View,最佳用途就是實現View的延遲載入,避免資源浪費,在需要的時候才載入View"需要注意的是,載入view之後,viewstub本身就會被新載入

關於ormlite-android用法

首先說明一下,本人已經使用ormlite-android做過兩個大型的專案開發,很久以來就想對此資料庫做一些總結,正好今天有空就寫出來: 1. 首先去官網http://ormlite.com/看官方說明,也可以去http://ormlite.com/releases/下載兩

Android中persistent屬性用法

看見好的東西,不轉載真是罪過 本文例項講述了Android中persistent屬性用法。分享給大家供大家參考,具體如下: 前段時間在研究telephony時,一直沒有在framework下發現對telephony的初始化(PhoneFactory.Java中的make

Android之ButterKnife用法

轉自:http://blog.csdn.net/leavessilent/article/details/60872096 相信很多開發Android的小夥伴,都厭倦了findViewById(),都是基本重複的操作,所以我們可以使用依賴注入框架來偷懶。目前,用的較多的

Android 搜尋框:SearchView 的屬性和用法

SearchView簡介 SearchView是Android原生的搜尋框控制元件,它提供了一個使用者介面,用於使用者搜尋查詢。 SearchView預設是展示一個search的icon,

Android 屬性動畫,屬性動畫基本用法

Hello,大家好,今天要給大家講的是Android 屬性動畫詳解! 在Tween動畫的討論中,我們提到在Android中動畫可以分為三類:①幀動畫②Tween(補間動畫)③Property Anim

Android 除錯橋 adb用法

參考連結:https://developer.android.com/studio/command-line/adb.html Android 除錯橋 (adb) 是一個通用命令列工具,其允許您與模擬器例項或連線的 Android 裝置進行通訊。它可為各種裝置操作提供便利,如安裝和除錯應用,並提供對 U

Android】SQLite資料庫基本用法(極簡潔)

    Android操作SQLite資料庫(極簡潔,極易懂) 本篇原始碼地址: 原始碼裡面有詳細註釋,切記要修改一下gradle的版本號為本地gradle版本號,否則AndroidStduio會自行下載,浪費時間。 一、成品效果圖 Android

Android開發——DiskLruCache用法以及工作原理深度解析

     初探       相信所有人都知道,網易新聞中的資料都是從網路上獲取的,包括了很多的新聞內容和新聞圖片,如下圖所示:       但是不知道大家有沒有發現,這些內容和圖片在從網路上獲取到之後都會存入到本地快取中,因此即使手機在沒有網路的情況下依然能夠加載出以前瀏覽過的新聞。而使用的快取技術不

Android Animation之ScaleAnimation用法

ScaleAnimation用法詳解ScaleAnimation是Animation的子類,其有四個構造方法:1、publicScaleAnimation(Context context, AttributeSet attrs)方法的兩個引數中context就不再解釋了,上下

Android筆記:介面回撥(interface/abstract)的用法

使用場景 小明想要問小紅借10塊錢,小紅答應借. 但是小紅很關心小明還錢,因為小紅想要在小明還錢之後,去買好吃的蛋糕. 這個時候, 小紅又不能時時刻刻催著小明還錢. 只能等小明還錢的時候通知小紅了; 那麼, 小明通知小紅的這個過程, 我把它叫做 回撥