Contents

조회 수 1165 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

Javascript를 통해 Activity의 함수를 호출할 때,

예제는 finish();를 호출해서 현재 창을 닫는다.


Using the linked page as an example, you should be able to do something like this:

WebAppInterface class

public class WebAppInterface {
    Activity mActivity;

    /** Instantiate the interface and set the activity */
    WebAppInterface(Activity activity) {
        mActivity = activity;
    }

    /** Finish activity from the web page */
    @JavascriptInterface
    public void finishActivity() {
        mActivity.finish();
    }
}


Now, in your activity you add the JS interface like this:

WebViewActivity

WebView webView = (WebView) findViewById(R.id.webview);
webView.addJavascriptInterface(new WebAppInterface(this), "Android");


And in your webpage, you can finish the activity by clicking a button, like this:

HTML Contents

<input type="button" value="Finish the activity now" onClick="finishActivity()" />

<script type="text/javascript">
    function finishActivity() {
        Android.finishActivity();
    }
</script>

[출처] http://stackoverflow.com/questions/20639476/calling-activity-function-from-separate-class


?

  1. [ios] 로컬에 있는 JS 파일 웹뷰에서 동적으로 실행하기

  2. [ios] Xcode에서 특정 파일만 ARC 따로 설정하는 방법

  3. [ios] 상위 ViewController 가져오기

  4. [ios] 오브젝티브C→스위프트, 코드 변환 손쉽게

  5. [ios] APNS, Remote Push 수신 시점에서 앱의 3가지 실행 상태

  6. [mac] 패키지 매니저, MacPort

  7. [mac] VirtualBox 실행 스크립트와 bash_profile 설정

  8. 캘리포니아 운전면허 문제

  9. '2014 모바일 개발 트렌드' 발표자료입니다.

  10. RSVP 란?

  11. [svn] Can't convert string from native encoding to 'UTF-8' 메시지가 나오는 경우

  12. [ios] Xcode의 디버그 모드에서 콜스택

Board Pagination Prev 1 ... 5 6 7 8 9 10 11 12 13 14 ... 98 Next
/ 98