Views 1153 Votes 0 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print

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
No. Category Subject Author Date Views
1013 Develop [c] OpenGL 마우스 이벤트 hooni 2003.04.23 8731
1012 Develop [js] 점점 커지는 새창.. hooni 2003.04.23 6998
1011 Develop [c][java] 소켓 프로그래밍(채팅 서버 C, 클라이언트 Java) file hooni 2003.04.23 7011
1010 Develop [c] 신기한 atoi함수(www.game79.net) hooni 2003.04.23 7273
1009 Develop [c] OpenGL 색 입방체의 회전(입체) hooni 2003.04.23 7869
1008 Develop [php] 마시마로 캐릭터 방명록 file hooni 2003.04.23 8239
1007 Develop [c] 시간 계산 하는 프로그램 소스코드 file hooni 2003.04.23 6745
1006 Develop [linux] 프로세스 관련 시스템콜 hooni 2003.04.23 7827
1005 Develop [c] 문자열 처리 관련 함수들 설명 hooni 2003.04.23 7997
1004 Develop [c] 시간 관련 함수 설명과 예제.. file hooni 2003.04.23 11523
1003 Develop [c] 스토리지 클래스(변수) hooni 2003.04.23 8197
1002 Develop [c] 포인터와 함수포인터에 대해.. hooni 2003.04.23 8019
1001 Develop [c] 구조체의 설명과 예제.. hooni 2003.04.23 8373
1000 Develop [c] 프로세스간의 통신(파이프) hooni 2003.04.23 6891
999 Develop [jsp] 정적/동적(차트생성) 이미지 전달 file hooni 2003.04.23 7307
998 Develop [c] OpenGL 직사각형(2D) 크기 확대/축소 hooni 2003.04.23 9069
Board Pagination Prev 1 ... 9 10 11 12 13 ... 74 Next
/ 74