Develop
2016.11.15 10:23
[android] Calling activity function from separate class
Views 7412 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 |
---|---|---|---|---|---|
157 | Develop |
[ios][swift] 초간단 To-do Memo
![]() |
hooni | 2016.06.27 | 11036 |
156 | Develop |
[ios][swift] 초간단 카달로그 앱 (Catalog App)
![]() |
hooni | 2016.06.27 | 14307 |
155 | Etc |
영어. 반드시 외워야 할 단어
![]() |
hooni | 2016.07.07 | 3994 |
154 | Etc |
영어. 반드시 외워야 할 영어 숙어
2 ![]() |
hooni | 2016.07.07 | 8102 |
153 | Develop |
[ios] 새로 만들고 있는 DateMemo
![]() |
hooni | 2016.07.12 | 1894 |
152 | Develop | [ios] Crashlytics, Fabfic 설치/설정 | hooni | 2016.07.21 | 2358 |
151 | Develop |
[c] 파일명 또는 특정 패턴을 적용
![]() |
hooni | 2016.08.03 | 2404 |
150 | Develop | [android] Android N requires the IDE to be running with Java 1.8 or later 오류 | hooni | 2016.08.30 | 2777 |
149 | PPT |
삼성페이(Samsung Pay) 구조
![]() |
hooni | 2016.09.09 | 2793 |
148 | Develop | [c] 셀프 넘버(Self Number) 구하기 1 | hooni | 2016.09.09 | 3823 |
147 | Develop | [c] Mac OS 에 gmp(gmp.h) 라이브러리 설치 | hooni | 2016.10.03 | 5055 |
146 | Develop |
[c] RSA 암호화 구현(gmp 라이브러리 활용)
![]() |
hooni | 2016.10.03 | 2742 |