Develop
2016.11.15 10:23
[android] Calling activity function from separate class
조회 수 7412 댓글 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 •
번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|---|
1129 | Etc |
성문 종합 영어 정리된 pdf 파일
![]() |
hooni | 2013.06.25 | 33014 |
1128 | Etc | 선과 악에 대한 영어논술문항(지킬앤하이드 독서 후 이어지는 심화 수행평가) | hooni | 2013.12.04 | 13904 |
1127 | System/OS |
서버 확장을 위한 두 가지 방법
![]() |
hooni | 2018.08.29 | 4957 |
1126 | Develop | 서기의 PHP 동영상 강의(싱싱해) | hooni | 2013.05.15 | 31891 |
1125 | PPT |
삼성페이(Samsung Pay) 구조
![]() |
hooni | 2016.09.09 | 2793 |
1124 | Etc |
사이버보안실무 시험.
![]() |
hooni | 2017.04.20 | 0 |
1123 | Etc | 사이버보안실무 수업 메모 | hooni | 2017.03.30 | 2967 |
1122 | Develop |
사이버보안실무 수업 메모
![]() |
hooni | 2017.03.23 | 0 |
1121 | Develop |
사이버보안실무 발표자료 (2017.06.08)
![]() |
hooni | 2017.06.05 | 9579 |
1120 | Develop |
베지어 곡선(Bézier curve) 알고리즘(spline 곡선)
3 ![]() |
hooni | 2013.04.23 | 35259 |
1119 | Etc |
베지어 곡선 (Bezier curve)
![]() |
hooni | 2013.08.18 | 238829 |
1118 | Develop |
밸런싱 로봇.. 최종.. (관련 논문도 첨부) ㅋㅋ
![]() |
hooni | 2013.04.23 | 24157 |