如何在 Android 中发送意图让浏览器打开指定 URL?
本示例演示了如何发送意图让浏览器打开 android 中的特定 URL。
步骤 1 − 在 Android Studio 中创建新项目,转到文件 ⇒ 新项目,然后填写所有必需信息以创建新项目。
步骤 2 − 添加以下代码到 res/layout/activity_main.xml。
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout 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" android:padding="8dp" tools:context=".MainActivity"> <Button android:onClick="GetUrlFromIntent" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Get URL from Intent" android:layout_centerInParent="true"/> </RelativeLayout>
步骤 3 − 添加以下代码到 src/MainActivity.java
import androidx.appcompat.app.AppCompatActivity; import android.content.Intent; import android.net.Uri; import android.os.Bundle; import android.view.View; public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } public void GetUrlFromIntent(View view) { String url = "http://www.google.com"; Intent i = new Intent(Intent.ACTION_VIEW); i.setData(Uri.parse(url)); startActivity(i); } }
步骤 4 − 添加以下代码到 androidManifest.xml
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="app.com.sample"> <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 运行应用程序,请打开其中一个项目的活动文件,然后单击工具栏上的运行 图标。选择你的移动设备作为选项,然后查看你的移动设备,它将显示你的默认屏幕 −
点击 此处 下载项目代码。
广告