본문 바로가기

hybrid app/phonegap

[phonegap cordova] InAppBrowser

http://docs.phonegap.com/en/2.7.0/cordova_inappbrowser_inappbrowser.md.html#InAppBrowser

위 주소로 가면 모든 내용을 확인할 수 있다.


cordova 2.3 이상부터 플러그인인 childbrowser를 쓸 필요가 없어졌다.


phonegap에서 childbrowser를 InAppBrowser라는 이름으로 지원해 준다.


사용방법은 다음과 같다.


안드로이드는


app->res->xml->config.xml 에 다음과 같이 추가한다.


<plugin name="InAppBrowser" value="org.apache.cordova.InAppBrowser" />


ios는


config.xml에 다음과 같이 추가한다.


<plugin name="InAppBrowser" value="CDVInAppBrowser" />

그리고 javascript상에 다음과 같이 입력하면

window.open('http://apache.org', '_blank', 'location=yes');


InAppBrowser가 실행된다.