首頁 > 軟體

Android程序間使用Intent進行通訊

2023-02-28 18:01:21

安卓使用Intent來封裝程式的“呼叫意圖”,使用Intent可以讓程式看起來更規範,更易於維護。

除此之外,使用Intent還有一個好處:有些時候我們只是想要啟動具有某種特徵的元件,並不想和某個具體的元件耦合,使用Intent在這種情況下有利於解耦。

Action,Category屬性與intent-filter設定

我們知道當需要進行Activity跳轉的時候需要在manifests.xml檔案中設定Activity資訊。其中主Activity還需要設定<intent-filter>,並且在標籤中還要設定<action>和<category>兩個標籤。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools">
    <application
        android:allowBackup="true"
        android:dataExtractionRules="@xml/data_extraction_rules"
        android:fullBackupContent="@xml/backup_rules"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/Theme.AcitvityTest"
        tools:targetApi="31">
        <activity android:name=".lifecycle.SecondActivity"/>
        <activity
            android:name=".lifecycle.FirstActivity"
            android:exported="true">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
            <meta-data
                android:name="android.app.lib_name"
                android:value="" />
        </activity>
    </application>
</manifest>

其中Action代表該Intent所要完成的一個抽象“動作”,而category則用於為Action增加額外的附加類別資訊。通常Action屬性會與Category屬性結合使用。

<action>和<category>兩個標籤中都可以指定android:name屬性,該屬性的值實際上就是字串,<action>標籤中的屬性表明該Activity能夠響應哪些Intent。

<intent-filer>標籤實際上就是IntentFilet物件,用於宣告該元件(比如Activity,Service,BroadcastReceiver)能夠滿足多少要求,每個元件可以宣告自己滿足多個Action要求,多個Category要求。只要某個元件能滿足的要求大於等於Intent所指定的要求,那麼該Intent就能啟動該元件。

一個Intent物件只能包含一個Action屬性,通過setAction(Stirng str)方法來進行設定,一個Intent物件可以包含多個Category屬性,通過addCategory(String str)方法來進行新增。

當然,我們也可以通過設定Intent的Action和Category屬性來跳轉到系統的Activity

public class HomeActivity extends Activity {
    @Override
    protected void onCreate(@Nullable Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.home);
        Button button = findViewById(R.id.home);
        button.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Intent intent = new Intent();
                intent.setAction(Intent.ACTION_MAIN);
                intent.addCategory(Intent.CATEGORY_HOME);
                startActivity(intent);
            }
        });
    }
}

上述程式碼中設定的Action和Category對應的就是系統桌面,點選按鈕後就會返回桌面。

到此這篇關於Android程序間使用Intent進行通訊的文章就介紹到這了,更多相關Android Intent通訊內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com