在androidManifest.xml 中 activity 下边加
<activity ... > <intent-filter> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.BROWSABLE" /> <category android:name="android.intent.category.DEFAULT" /> <data android:scheme="scheme" android:host="host" android:path="/detail" /> </intent-filter> </activity>
在需要跳转的地方加
val url = "scheme://host/detail" var intent = Intent(Intent.ACTION_VIEW, Uri.parse(url)) context.startActivity(intent)