본문 바로가기
android

브라우저에서 어플 불러오기

by 최고집이사 2018. 2. 14.

브라우저에서 어플 불러오기


기억하기 위한 내 자신의 기록이다.  

크롬이나 익스에서 링크로 어플을 불러오는 방법이다.

설치되어 있으면 어플을 실행시키고 설치가 안되어 있으면 설치 화면 마켓으로 이동한다.



AndroidManifest.xml 에 선언.



Action, Category, data 로 작업가능. TestApp가 불러올 어플 정의.


<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:scheme="callMyApp" android:host="TestApp" />

</intent-filter>


브라우저에 링크 걸기 : 패키지명은 구글플레이드 등록된 실행시킬 어플 패키지명.


<a href="Intent://TestApp#Intent;scheme=callMyApp;package=패키지명;end">어플실행</a>


테스트 해 보니 잘된다.




현재 Bottom Navigation Bar 에 대해서 공부하는데 나름 잘 하고 있다. ^^