BIG
///////////////////////////////////////////////////////////////////////
// 해결방법
//
// Step.01 AndroidManifest.xml 파일의 manifest안에 아래 코드를 추가합니다. (meta-data)
<manifest>
<meta-data android:name="android.webkit.WebView.EnableSafeBrowsing" android:value="true" />
<application
.
.
.
</manifest>
// Step.02 onCreate에서 loadUrl을 할때 final로 선언한 url만 열리도록 했습니다.
private static final String target_url="trandent.com";
protected void onCreate(Bundle savedInstanceState)
{
.
.
.
mWebView.loadUrl(target_url);
}
출처 : https://trandent.com/article/android/detail/319341
LIST
'!!...Android' 카테고리의 다른 글
[Android] 전면 카메라를 이용한 심박수 측정 Ver20231129_001 (0) | 2023.11.29 |
---|---|
[Android] android.os.FileUriExposedException: exposed beyond app through Intent.getData() (0) | 2023.01.13 |
[Android] image Selecter Sample Code (0) | 2023.01.12 |
[Android] File Selecter Sample Code (0) | 2023.01.12 |
[Android] Android 12 Manifest merger failed : android:exported needs to be explicitly specified for (0) | 2022.10.31 |