隱式intent

来源:http://www.cnblogs.com/Renyi-Fan/archive/2017/07/29/7253915.html
-Advertisement-
Play Games

隱式intent 一、隱式意圖介紹 顯式意圖我們前面已經提到,形如: Intent intent = new Intent(); intent.setClass(this,Other.class); //此句表示顯式意圖,因為明確設置激活對象為Other類 startActivity(intent) ...


隱式intent

一、隱式意圖介紹

 

顯式意圖我們前面已經提到,形如:

Intent intent = new Intent();

intent.setClass(this,Other.class); //此句表示顯式意圖,因為明確設置激活對象為Other類

startActivity(intent);

 

顧名思義,隱式意圖就是在不明確設置激活對象的前提下尋找最匹配的組件,舉個例子,比如有5個人:

(1)A:170cm

(2)B:160cm

(3)C:180cm

(4)D:190cm

(5)E:200cm

如果是顯示意圖的話,如果我們要指明選擇A的話會說:”我選擇A.“,但是如果是隱式意圖,則會說:”我要選擇170cm的人“,雖然沒有指明要選A,但會尋找條件最匹配的人。

 

在intent過濾器中類似於上面例子中的”身高“條件的匹配條件有:

(1)action

(2)category

(3)data:scheme、host、path、type

當在程式中設置了這些激活組件的條件,程式就會去尋找最匹配的組件,但是註意:只要有一點不匹配,則就是不匹配;

比如:

Intent intent = new Intent();

intent.setAction("a"); //此句只是指定了Action

startActivity(intent); //尋找最匹配的組件激活,內部會調用intent.addCategory("Android.intent.category.DEFAULT"); 

 

參考:http://blog.csdn.net/xiazdong/article/details/7764865

 

二、代碼實例

com.example.implicit2a_Intent.MainActivity

package com.example.implicit2a_Intent;




import com.example.implicit2_intent.R;

import android.app.Activity;
import android.content.DialogInterface;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;

public class MainActivity extends Activity implements OnClickListener{
    private Button btn_one;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        btn_one=(Button) findViewById(R.id.button1);
        btn_one.setOnClickListener(this);
    }
    @Override
    public void onClick(View v) {
        // TODO Auto-generated method stub
        Intent intent=new Intent();
        /**
         * 找所有action符合為"com.fry.activity01"的頁面
         * 也找所有Category為android.intent.category.DEFAULT的頁面
         * String android.content.Intent.CATEGORY_DEFAULT = 
         * "android.intent.category.DEFAULT"
         */
        intent.setAction("com.fry.activity01");
        intent.addCategory(Intent.CATEGORY_DEFAULT);
        startActivity(intent);
    }

    
}

/implicit2_Intent/AndroidManifest.xml

 1 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
 2     package="com.example.implicit2_intent"
 3     android:versionCode="1"
 4     android:versionName="1.0" >
 5 
 6     <uses-sdk
 7         android:minSdkVersion="8"
 8         android:targetSdkVersion="19" />
 9 
10     <application
11         android:allowBackup="true"
12         android:icon="@drawable/ic_launcher"
13         android:label="@string/app_name"
14         android:theme="@style/AppTheme" >
15         <activity
16             android:name="com.example.implicit2a_Intent.MainActivity"
17             android:label="@string/app_name" >
18             <intent-filter>
19                 <action android:name="android.intent.action.MAIN" />
20 
21                 <category android:name="android.intent.category.LAUNCHER" />
22             </intent-filter>
23         </activity>
24         <activity android:name="com.example.implicit2a_Intent.Activity03">
25             <intent-filter >
26                 <action android:name="com.fry.activity01"></action>
27                 <category android:name="android.intent.category.DEFAULT"/>
28             </intent-filter>
29         </activity>
30     </application>
31 
32 </manifest>

另一個應用

com.example.implicit1Intent.MainActivity

 1 package com.example.implicit1Intent;
 2 
 3 
 4 import com.example.implicitintent.R;
 5 
 6 import android.app.Activity;
 7 import android.content.DialogInterface;
 8 import android.content.Intent;
 9 import android.os.Bundle;
10 import android.view.View;
11 import android.view.View.OnClickListener;
12 import android.widget.Button;
13 
14 public class MainActivity extends Activity implements OnClickListener{
15     private Button btn_one;
16     @Override
17     protected void onCreate(Bundle savedInstanceState) {
18         // TODO Auto-generated method stub
19         super.onCreate(savedInstanceState);
20         setContentView(R.layout.activity_main);
21         btn_one=(Button) findViewById(R.id.button1);
22         btn_one.setOnClickListener(this);
23     }
24     @Override
25     public void onClick(View v) {
26         // TODO Auto-generated method stub
27         Intent intent=new Intent();
28         /**
29          * 找所有action符合為"com.fry.activity01"的頁面
30          * 也找所有Category為android.intent.category.DEFAULT的頁面
31          * String android.content.Intent.CATEGORY_DEFAULT = 
32          * "android.intent.category.DEFAULT"
33          */
34         intent.setAction("com.fry.activity01");
35         intent.addCategory(Intent.CATEGORY_DEFAULT);
36         startActivity(intent);
37     }
38 
39     
40 }

/implicit_Intent/AndroidManifest.xml

 1 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
 2     package="com.example.implicitintent"
 3     android:versionCode="1"
 4     android:versionName="1.0" >
 5 
 6     <uses-sdk
 7         android:minSdkVersion="8"
 8         android:targetSdkVersion="19" />
 9 
10     <application
11         android:allowBackup="true"
12         android:icon="@drawable/ic_launcher"
13         android:label="@string/app_name"
14         android:theme="@style/AppTheme" >
15         <activity
16             android:name="com.example.implicit1Intent.MainActivity"
17             android:label="@string/app_name" >
18             <intent-filter>
19                 <action android:name="android.intent.action.MAIN" />
20 
21                 <category android:name="android.intent.category.LAUNCHER" />
22             </intent-filter>
23         </activity>
24         <activity android:name="com.example.implicit1Intent.Activity01">
25             <intent-filter >
26                 <action android:name="com.fry.activity01"></action>
27                 <category android:name="android.intent.category.DEFAULT"/>
28             </intent-filter>
29         </activity>
30         <activity android:name="com.example.implicit1Intent.Activity02">
31             <intent-filter >
32                 <action android:name="com.fry.activity01"></action>
33                 <category android:name="android.intent.category.DEFAULT"/>
34             </intent-filter>
35         </activity>
36     </application>
37 
38 </manifest>

 


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

-Advertisement-
Play Games
更多相關文章
  • 主框架頁面: 在主界面區會載入西區菜單點擊的URL內容. 主界面 此時在主頁面已經載入了easy-ui的腳本和CSS ,在各區頁面就不必載入了,即使載入了也會被去掉. 我一開始在datagrid頁面添加格式化函數,但是沒有效果,始終報找不到formatIsval... ...
  • 1.覆選框與按鈕的配合使用的DOM操作 <body> <input type="checkbox" id="ckb1" /><br><br> <input type="button" value="下一步" id="btn1" disabled="disabled" /> </body> <scri ...
  • 1.截取方法 截取字元串的abcdefg中的efg. 註意:str.length從1的開始數 var str="abcdefg"; (1).slice() : console.log(str.slice(4,7)); //efg第一個參數開始,第二個參數結束並且取不到.遇到負數把length和負數相 ...
  • 被遺棄的標簽和屬性 <center> 定義居中的文本 -> text-align <font>和<basefont> 定義HTML字體 -> font-family字體系列 font-size字體尺寸 <s>和<strike> 定義刪除線文本 <u> 定義下劃線文本 bgcolor 定義背景顏色 - ...
  • logcat 一、簡介 非常好用的日誌工具 二、常見操作 1、選擇對應級別的日誌 2、添加日誌過濾器filter 三、代碼實例 建立日誌filter 下麵代碼運行的日誌結果 com.fry.logcatTest.MainActivity ...
  • URI
    URI 一、介紹 ...
  • intent Filter 一、介紹 如果一個 Intent 請求在一片數據上執行一個動作, Android 如何知道哪個應用程式(和組件)能用來響應這個請求呢? Intent Filter就是 用來註冊 Activity 、 Service 和 Broadcast Receiver 具有能在某種數 ...
  • 有 App 源碼時,可以直接查看 AndroidManifest.xml 文件。 " xmlns:android="http://schemas.android.com/apk/res/android"> 只有 apk 安裝包時,可以通過 Android SDK 中的aapt(build-tools... ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...