Android 中有多少种 Intent 类型?
在深入了解 Intent 类型之前,我们应该了解什么是 Intent?Intent 用于执行操作。它主要用于启动 Activity、发送广播接收器、启动服务以及在两个 Activity 之间发送消息。Android 中有两种 Intent 可用:隐式 Intent 和显式 Intent。
显式 Intent - 它用于连接应用程序的内部世界,例如启动 Activity 或在两个 Activity 之间发送数据。要启动新的 Activity,我们必须创建 Intent 对象并传递源 Activity 和目标 Activity,如下所示:
Intent send = new Intent(MainActivity.this, SecondActivity.class); startActivity(send);
并且我们应该在 Manifest.xml 文件中声明第二个 Activity,否则它将显示运行时异常。示例声明如下所示。
<activity android:name = ".SecondActivity"></activity>
隐式 Intent - 它用于连接外部应用程序,例如拨打电话、发送邮件、使用电话、查看任何网站等。在隐式 Intent 中,我们必须使用 setAction() 传递一个操作,如下面的示例所示。
Intent i = new Intent(); i.setAction(Intent.ACTION_VIEW); i.setData(Uri.parse("www.tutorialspoint.com")); startActivity(i);
在上面的示例中,我们将操作设置为“查看”。因此,它将显示我们在 setData 方法中提供的内容。
setData() - This method is only to specifies a URI. setType()- This method specifies a MIME type. setDataAndType()- This method i specifies both a URI and a MIME type.
此示例演示了如何集成使用显式 Intent。
步骤 1 - 在 Android Studio 中创建一个新项目,转到文件 ⇒ 新建项目,并填写所有必需的详细信息以创建新项目。
步骤 2 - 将以下代码添加到 res/layout/activity_main.xml 中。
<?xml version = "1.0" encoding = "utf-8"?> <android.support.constraint.ConstraintLayout xmlns:android = "http://schemas.android.com/apk/res/android" xmlns:tools = "http://schemas.android.com/tools" android:layout_width = "match_parent" android:layout_height = "match_parent"> <LinearLayout android:layout_width = "match_parent" android:layout_height = "match_parent" android:gravity = "center" android:orientation = "vertical"> <Button android:layout_width = "wrap_content" android:layout_height = "wrap_content" android:text = "Start website" android:id = "@+id/send"/> </LinearLayout> </android.support.constraint.ConstraintLayout>
步骤 3 - 将以下代码添加到 src/MainActivity.java 中
import android.content.Intent; import android.net.Uri; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.view.View; import android.widget.Button; public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); Button send = findViewById(R.id.send); send.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Intent i = new Intent(); i.setAction(Intent.ACTION_VIEW); i.setData(Uri.parse("https://tutorialspoint.com")); startActivity(i); } }); } }
步骤 4 - 要启动网站,需要互联网权限。在 AndroidManifest.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" /> </intent-filter> </activity> </application> </manifest>
让我们尝试运行您的应用程序。我假设您已将您的实际 Android 移动设备连接到您的计算机。要从 Android Studio 运行应用程序,请打开项目的 Activity 文件之一,然后单击运行 工具栏中的图标。选择您的移动设备作为选项,然后检查您的移动设备,它将显示您的默认屏幕 -
现在单击“启动网站”按钮,它将重定向到 tutorialspoint 网站,如下所示。
单击此处下载项目代码