ikukevk, 출처 Unsplash Source Code @Override protected void onPostExecute(Integer result) { Activity activity = getActivity(); if (activity == null) { return; } String webViewData = getFormattedLicense(activity, license); AlertDialog.Builder alert = new AlertDialog.Builder(activity ); alert.setTitle(license.getName()); WebView wv = new WebView(activity); //wv.loadData(webViewData, "text/html", "utf-8"); wv.loadDataWithBaseURL(null, webViewData,"text/html", "utf-8", null); wv.setWebViewClient(new ...