Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
重複の可能性: AndroidブラウザからカスタムAndroidアプリケーションを起動します
ユーザーがリンクをクリックすると、アプリを開くことができるブラウザーのリストにアプリが表示されるようにします。これを機能させるには、アプリのマニフェストに何を書き込む必要がありますか?
これをアクティビティタグ内のマニフェストxmlに追加します。
<intent-filter> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.BROWSABLE" /> </intent-filter>