1. ホーム
  2. android

[解決済み] Android インテントの URL に応答する

2022-04-28 01:49:35

質問

ユーザーが特定のURLにアクセスすると、インテントが起動するようにしたいのです。 http://market.android.com/ ユーチューブもそうです。私のもそうしてほしいです。

解決方法は?

できたよ! 使用方法 <intent-filter> . 以下をマニフェストファイルに記述してください。

<intent-filter>
  <action android:name="android.intent.action.VIEW" />
  <category android:name="android.intent.category.DEFAULT" />
  <category android:name="android.intent.category.BROWSABLE" />
  <data android:host="www.youtube.com" android:scheme="http" />
</intent-filter>

これは完璧に機能します