[자바스크립트에서 안드로이드 함수 호출] 1. 인터페이스 클래스 생성 targetSdkVersion 을 17이상이면 @JavascriptInterface를 꼭 추가해야한다. 추가하지 않으면 함수가 동작하지 않는다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 public class WebAppInterface { Context mContext; /** Instantiate the interface and set the context */ WebAppInterface(Context c) { mContext = c; } /** Show a toast from the web page */ @JavascriptInterface public void showToast ( String toast) { Toast.makeText(mContext, toast, Toast.LENGTH_SHORT) .show( ...