Intent屬性詳解三 data、type和extra

来源:http://www.cnblogs.com/androidWuYou/archive/2016/09/26/5888280.html
-Advertisement-
Play Games

1 Data 執行時要操作的數據 在目標<data/>標簽中包含了以下幾種子元素,他們定義了url的匹配規則: android:scheme 匹配url中的首碼,除了“http”、“https”、“tel”...之外,我們可以定義自己的首碼 android:host 匹配url中的主機名部分,如“g ...


1 Data  執行時要操作的數據

在目標<data/>標簽中包含了以下幾種子元素,他們定義了url的匹配規則:

android:scheme 匹配url中的首碼,除了“http”、“https”、“tel”...之外,我們可以定義自己的首碼

android:host 匹配url中的主機名部分,如“google.com”,如果定義為“*”則表示任意主機名

android:port 匹配url中的埠

android:path 匹配url中的路徑

在XML中聲明可以操作的data域應該是這樣的:

<activity android:name=".TargetActivity">  

<intent-filter>  

    <action android:name="com.scott.intent.action.TARGET"/>  

    <category android:name="android.intent.category.DEFAULT"/>  

    <data android:scheme="scott" android:host="com.scott.intent.data" android:port="7788" android:path="/target"/>  

</intent-filter>  

</activity>  

 

註意:

這個標識比較特殊,它定義了執行此Activity時所需要的數據,也就是說,這些數據是必須的!!!!!所有如果其它條件都足以激活該Activity,但intent卻沒有傳進來指定類型的Data時,就不能激活該activity!!!!

2 Intent的Type屬性

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

3 方法

1  settype

使用該函數表示要查找文件的mime類型(如*/*),這個和組件在manifest里定義的相對應,但在源代碼里:

public Intent setData(Uri data) { 

        mData = data; 

        mType = null; 

        return this; 

    } 

 

會將type設為null。

2  setdata

該函數的參數是uri,所以要將數據通過該函數傳遞時,記得要把數據轉化為uri,如Uri.fromFile(new File("/mnt/sdcard/"))。

該函數源代碼

public Intent setType(String type) { 

        mData = null; 

        mType = type; 

        return this; 

    } 

 

3 setdataandtype

所以要同時設置data和type的話只能用函數setdataandtype了

public Intent setDataAndType(Uri data, String type) { 

        mData = data; 

        mType = type; 

        return this; 

    } 

4 Extras:

  Extras屬性主要用於傳遞目標組件所需要的額外的數據。通過putExtras()方法設置。

    常用值如下所示:

    EXTRA_BCC:存放郵件密送人地址的字元串數組。 

    EXTRA_CC:存放郵件抄送人地址的字元串數組。

    EXTRA_EMAIL:存放郵件地址的字元串數組。 

    EXTRA_SUBJECT:存放郵件主題字元串。 

    EXTRA_TEXT:存放郵件內容。 

    EXTRA_KEY_EVENT:以KeyEvent對象方式存放觸發Intent的按鍵。  

    EXTRA_PHONE_NUMBER:存放調用ACTION_CALL時的電話號碼

 

5 Demo源碼

activity:

package mm.shandong.com.testdatatype;

import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.TextView;

import java.util.ArrayList;

public class TestDataTypeActivity extends AppCompatActivity {

    TextView textView;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_test_data_type);
        textView= (TextView) findViewById(R.id.textView);
    }
    public void readDataAndType1(View view){
            Intent intent=new Intent();
           Uri uri= Uri.parse("http://www.baidu.com/2.asp");
           intent.setData(uri);
           intent.setType("abc/efg");
           String str="Data: "+intent.getDataString()+", Type:"+intent.getType();
          textView.setText(str);
    }
    public void readDataAndType2(View view){
        Intent intent=new Intent();
        intent.setType("abc/efg");
        Uri uri= Uri.parse("http://www.baidu.com/2.asp");
        intent.setData(uri);
        String str="Data: "+intent.getDataString()+", Type:"+intent.getType();
        textView.setText(str);
    }
    public void readDataAndType3(View view){
        Intent intent=new Intent();
        Uri uri= Uri.parse("http://www.baidu.com/2.asp");
        intent.setDataAndType(uri,"abc/efg");
        String str="Data: "+intent.getDataString()+", Type:"+intent.getType();
        textView.setText(str);
    }
    public void startDataAndType1(View view){
        Intent intent=new Intent();
        intent.setAction("TestDataTypeActivityXXX");
        Uri uri= Uri.parse("ottp://");
        intent.setData(uri);
        startActivity(intent);
    }

    public void startDataAndType2(View view){
        Intent intent=new Intent();
        intent.setAction("TestDataTypeActivityXXX");
        Uri uri= Uri.parse("ottp://shandong.mm");
        intent.setData(uri);
        startActivity(intent);
    }
    public void startDataAndType3(View view){
        Intent intent=new Intent();
        intent.setAction("TestDataTypeActivityXXX");
        Uri uri= Uri.parse("ottp://shandong.mm:8080");
        intent.setData(uri);
        startActivity(intent);
    }
    public void startDataAndType4(View view){
        Intent intent=new Intent();
        intent.setAction("TestDataTypeActivityXXX");
        Uri uri= Uri.parse("ottp://shandong.mm:8080/pathparent/pathchild");
        intent.setData(uri);
        startActivity(intent);
    }
    public void startDataAndType5(View view){
        Intent intent=new Intent();
        intent.setAction("TestDataTypeActivityXXX");
        Uri uri= Uri.parse("ottp://shandong.mm:8080/pathparent/pathchild");
        intent.setDataAndType(uri,"abc/efg");
        startActivity(intent);
    }

}

 清單文件

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="mm.shandong.com.testdatatype">

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity
            android:name=".TestDataTypeActivity"
            android:configChanges="keyboardHidden|orientation|screenSize" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
            </activity>
        <activity
            android:name=".TestDataTypeActivity1"
            android:configChanges="keyboardHidden|orientation|screenSize"
            android:label="含有scheme">
            <intent-filter>
                <action android:name="TestDataTypeActivityXXX" />

                <category android:name="android.intent.category.DEFAULT" />

                <data android:scheme="ottp" />
            </intent-filter>
        </activity>
        <activity
            android:name=".TestDataTypeActivity2"
            android:configChanges="keyboardHidden|orientation|screenSize"
            android:label="含有host">
            <intent-filter>
                <action android:name="TestDataTypeActivityXXX" />

                <category android:name="android.intent.category.DEFAULT" />

                <data
                    android:host="shandong.mm"
                    android:scheme="ottp" />
            </intent-filter>
        </activity>
        <activity
            android:name=".TestDataTypeActivity3"
            android:configChanges="keyboardHidden|orientation|screenSize"
            android:label="含有port">
            <intent-filter>
                <action android:name="TestDataTypeActivityXXX" />

                <category android:name="android.intent.category.DEFAULT" />

                <data
                    android:host="shandong.mm"
                    android:port="8080"
                    android:scheme="ottp" />
            </intent-filter>
        </activity>
        <activity
            android:name=".TestDataTypeActivity4"
            android:configChanges="keyboardHidden|orientation|screenSize"
            android:label="含有path">
            <intent-filter>
                <action android:name="TestDataTypeActivityXXX" />

                <category android:name="android.intent.category.DEFAULT" />

                <data
                    android:host="shandong.mm"
                    android:path="/pathparent/pathchild"
                    android:port="8080"
                    android:scheme="ottp" />
            </intent-filter>
        </activity>
        <activity
            android:name=".TestDataTypeActivity5"
            android:configChanges="keyboardHidden|orientation|screenSize"
            android:label="data和type同時存在">
            <intent-filter>
                <action android:name="TestDataTypeActivityXXX" />

                <category android:name="android.intent.category.DEFAULT" />

                <data
                    android:host="shandong.mm"
                    android:mimeType="abc/efg"
                    android:path="/pathparent/pathchild"
                    android:port="8080"
                    android:scheme="ottp" />
            </intent-filter>
        </activity>
    </application>

</manifest>

 

本人微博:honey_11

Demo下載
最後,以上例子都來源與安卓無憂,請去應用寶或者豌豆莢下載:例子源碼,源碼例子文檔一網打盡

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • js中三種彈窗 1)alert 彈出警告 無返回值---------alert('第一行\n第二行'); 2)confirm()選擇確定或取消,返回t或f----var result = confirm('是否刪除!'); 3)prompt()彈出輸入框,返回輸入內容----var value = ...
  • 以下是個人對這三個老大難的總結(最近一直在學習原生JS,翻了不少書,不少文檔,雖然還是新手,但我會繼續堅持走我自己的路) 原型鏈 所有對象都是基於 ,`Object.prototype Object.prototype Object.prototype toString() [[class]] '[ ...
  • <!DOCTYPE html> <html lang="zh-cn"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1, ...
  • 本文是翻譯Function.apply and Function.call in JavaScript,希望對大家有所幫助 轉自“http://www.jb51.net/article/52416.htm” 第一次翻譯技術文章,見笑了! 翻譯原文: Function.apply and Functi ...
  • 1.定義網頁背景顏色 <body bgcolor="背景色"> 顏色可以用2種方式表示:1. 直接指定顏色名稱,如blue。2.使用十六進位數據表示如#RRGGBB,分別表示兩位十六進位數據. 2.設置背景圖片 <body background="圖片的地址"> 3.設置文字顏色 <body tex ...
  • 正常情況下 使用bootstrap 比原生代碼 寫響應式佈局更快 補充上一文《bootstrap的實際應用》: web端 必做相容性 適應各種瀏覽器 可能有幾套圖 經常使用雪碧圖 app端 有不同的屏幕尺寸 且必須進行自適應{ @media srceen 或者 bootstrap 或者 JS } 也 ...
  • 仿Bilibili iOS客戶端 練習啟動頁 源碼下載:http://code.662p.com/view/14534.html 首頁 分區 發現 我的 視頻信息 普通/直播 視頻播放 詳細說明:http://ios.662p.com/thread-3121-1-1.html ...
  • 禮物說仿寫(updating...) 源碼下載:http://code.662p.com/view/14507.html api: 禮物說 首頁精選 banner2: http://api.liwushuo.com/v2/secondary_banners?gender=1&generation=2 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...