Contents

조회 수 1300 댓글 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


?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
49 Develop [matlab] ZigZag-Scanning (2-D Array) file hooni 2016.10.15 2106
48 Develop [lego] 세그웨이 이것만 볼것.. ㅎㅎ file hooni 2013.04.23 33574
47 Develop [js] 웹페이지에서 특정 엘리먼트 드래그, 복사, 컨텍스트메뉴, 키보드 막기 hooni 2013.11.04 30123
46 Develop [json] 종결자 (설명과 웹, C/C++/C# 프로그램 샘플 코드) file hooni 2013.04.23 72024
45 Develop [java] 입출력 스트림 3부 (오브젝트) hooni 2013.04.23 17170
44 Develop [java] 입출력 스트림 1부 (문자) file hooni 2013.04.23 15336
43 Develop [iphone] 아이폰 어플 모음 ㅋㅋ secret hooni 2013.04.23 13707
42 Develop [ios][swift] 초간단 카달로그 앱 (Catalog App) file hooni 2016.06.27 7276
41 Develop [ios] 웹뷰 history.back() ㅋㄷ file hooni 2016.06.27 2018
40 Develop [ios] 언어, 지역, 국가 설정 가져오기 hooni 2014.05.12 270789
39 Develop [ios] 아이폰용 앱 오픈 소스들 hooni 2013.04.23 468442
38 Develop [ios] 소소한 팁 (Rect,Point,Path,URL 등) hooni 2013.08.08 29523
Board Pagination Prev 1 2 3 4 5 6 Next
/ 6