Android中的Intent过滤器是什么?


Intent过滤器是IntentFilter类的实例。在使用隐式Intent时,Intent过滤器非常有用。它不需要在Java代码中处理,而需要在AndroidManifest.xml文件中设置。Android必须知道它正在启动什么样的Intent,因此Intent过滤器向Android提供关于Intent和动作的信息。

在启动Intent之前,Android将进行动作测试、类别测试和数据测试。此示例演示如何在Android中使用Intent过滤器。

**步骤1** - 在Android Studio中创建一个新项目,转到文件 ⇒ 新建项目,并填写所有必需的详细信息以创建一个新项目。

**步骤2** - 将以下代码添加到**res/layout/activity_main.xml**。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
   xmlns:app="http://schemas.android.com/apk/res-auto"
   xmlns:tools="http://schemas.android.com/tools"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:gravity="center"
   android:orientation="vertical"
   tools:context=".MainActivity">
   <Button
      android:id="@+id/buton"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="intent filter button" />
</LinearLayout>

在上面,我们添加了一个按钮,当您单击按钮时,它将显示带有动作的Intent。

**步骤3** - 将以下代码添加到**src/MainActivity.java**

package com.example.andy.myapplication;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
import android.widget.RadioButton;
public class MainActivity extends AppCompatActivity {
   RadioButton radioButton;
   @Override
   protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);
      final Button button = findViewById(R.id.buton);
      button.setOnClickListener(new View.OnClickListener() {
         @Override
         public void onClick(View v) {
            Intent intent = new Intent(Intent.ACTION_SEND);
            intent.setType("message/rfc822");
            intent.putExtra(Intent.EXTRA_EMAIL, new String[]{"[email protected]"});
            intent.putExtra(Intent.EXTRA_SUBJECT, "Welcome to tutorialspoint.com");
            startActivity(Intent.createChooser(intent, "Choose default Mail App"));
         }
      });
}
}

在上面,当用户单击按钮时,它将使用ACTION_SEND调用Intent,并将类型设置为message/rfc882。现在我们传递了电子邮件ID和主题消息。

**步骤4** - 将以下代码添加到**manifest.xml**

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
   package="com.example.andy.myapplication">
   <uses-permission android:name="android.permission.INTERNET" />
   <application
      android:allowBackup="true"
      android:icon="@mipmap/ic_launcher"
      android:label="@string/app_name"
      android:roundIcon="@mipmap/ic_launcher_round"
      android:supportsRtl="true"
      android:theme="@style/AppTheme">
      <activity android:name=".MainActivity">
         <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
            <action android:name="android.intent.action.SEND" />
            <category android:name="android.intent.category.DEFAULT" />
            <data android:mimeType="message/rfc822" />
         </intent-filter>
      </activity>
</application>
</manifest>

在上面,我们声明了action、category和data。让我们尝试运行您的应用程序。我假设您已将您的实际Android移动设备连接到您的计算机。要从Android Studio运行应用程序,请打开您的一个项目活动文件,然后单击运行 工具栏中的图标。选择您的移动设备作为选项,然后检查您的移动设备,它将显示您的默认屏幕 -

单击上面的按钮,它将调用Intent选择器以选择应用程序来发送来自Intent的数据,如下所示 -

我们选择了Gmail应用程序,如下所示 -

在上面的结果中,它将从Intent获取数据并附加到Gmail应用程序。

更新于:2020年6月30日

4K+ 浏览量

启动您的职业生涯

通过完成课程获得认证

开始
广告