Develop
2016.11.15 10:23
[android] Calling activity function from separate class
Views 7416 Comment 0
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
TAG •
No. | Category | Subject | Author | Date | Views |
---|---|---|---|---|---|
771 | Develop | [ios] Objective-C 특정 문자 찾아 제거하기 | hooni | 2013.04.23 | 29224 |
770 | Develop |
[ios] DJBros. (DJ요맨~)
![]() |
hooni | 2013.04.23 | 29109 |
769 | Develop | [ios] 코코아 프레임워크(Cocoa Framework) 기본적인 내용~ | hooni | 2013.04.23 | 28953 |
768 | Develop |
[c] C로 구현한 CGI - 계산기 (링크리스트, 스택, 이진트리)
![]() |
hooni | 2003.04.23 | 28942 |
767 | Develop | [c] fork() 시스템 콜 사용 방법. | hooni | 2003.04.23 | 28835 |
766 | Develop |
[ios] UDID와 UUID (디바이스의 Unique Identifier)
![]() |
hooni | 2013.04.23 | 28629 |
765 | Develop | 웹페이지 성능 테스트 툴 설명 | hooni | 2013.04.23 | 28443 |
764 | Develop |
[android] 멀티터치(Multi touch) 부분 구현 ㅋㅋ
![]() |
hooni | 2013.04.23 | 28244 |
763 | Develop | [ios] 참고할만한 좋은 예제 소스.. | hooni | 2013.04.23 | 28170 |
762 | Develop |
[node.js] 지금 하고 있는거..
![]() |
hooni | 2013.04.23 | 28123 |
761 | Develop | [node.js] nodejs 기본 설치 | hooni | 2013.04.23 | 28005 |
760 | Develop | [ios] Objective-C 문자열 조작 메서드 | hooni | 2013.04.23 | 27804 |