안드로이드

웹에서 액티비티 호출

newkie 2015. 11. 26. 11:58

Manifest 내 원하는 액티비티에 아래 필터 추가


<intent-filter>

        <category android:name="android.intent.category.DEFAULT" />

        <action android:name="android.intent.action.VIEW" />

        <data android:scheme="web" />

</intent-filter>


이후 웹에서 호출하는 부분


<a href="web://패키지명.액티비티명">