티스토리 뷰
Android Webview: "Uncaught TypeError: Cannot read property 'getItem' of null" 수정하기
맨날치킨 2023. 2. 17. 19:05Stack Overflow에 자주 검색, 등록되는 문제들과 제가 개발 중 찾아 본 문제들 중에서 나중에도 찾아 볼 것 같은 문제들을 정리하고 있습니다.
Stack Overflow에서 가장 먼저 확인하게 되는 가장 높은 점수를 받은 Solution과 현 시점에 도움이 될 수 있는 가장 최근에 업데이트(최소 점수 확보)된 Solution을 각각 정리하였습니다.
아래 word cloud를 통해 이번 포스팅의 주요 키워드를 미리 확인하세요.
Android Webview: "Uncaught TypeError: Cannot read property 'getItem' of null"
Android Webview: "Uncaught TypeError: Cannot read property 'getItem' of null"
문제 내용
I am creating a simple android app which has a webview which should display a url. When I give the url as google.com or facebook.com it loads properly but when I give my url(qbo.intuit.com), it doesn't load and gives the "Uncaught TypeError: Cannot read property 'getItem' of null" error. I am pasting my code here well. I am using Compile sdk version: API 22: Android 5.1 (Lollipop), Version- Android Studio 1.4, Build Number: AI-141.2288178, Android SDK Tools: 24.4.0, jdk1.7.0_80. A similar question exists but it did not help me. Please help I am new to android. MainActivity.java
저는 웹뷰를 사용하는 안드로이드 앱을 만들고 있습니다. 웹뷰는 URL을 표시해야 합니다. 구글 또는 페이스북 URL을 주면 제대로 로드되지만, 제가 입력한 URL(qbo.intuit.com)은 로드되지 않고 "Uncaught TypeError: Cannot read property 'getItem' of null" 오류가 발생합니다. 제가 사용하는 버전은 다음과 같습니다. Compile sdk version: API 22: Android 5.1 (Lollipop), Version- Android Studio 1.4, Build Number: AI-141.2288178, Android SDK Tools: 24.4.0, jdk1.7.0_80. 비슷한 질문이 있었지만 제게는 도움이 되지 않았습니다. 안드로이드 초보자입니다. MainActivity.java 코드를 첨부합니다.
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
String url= "https://qbo.intuit.com/";
WebView view= (WebView) this.findViewById(R.id.webView);
final WebViewClient client = new WebViewClient() {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
view.loadUrl(url);
return false;
}
};
WebSettings settings = view.getSettings();
settings.setJavaScriptEnabled(true);
view.setWebViewClient(client);
view.loadUrl(url);
}
AndriodManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
높은 점수를 받은 Solution
you need to do
다음과 같이 해보세요.
WebSettings settings = webView.getSettings();
settings.setDomStorageEnabled(true);
see details ERROR/Web Console: Uncaught TypeError: Cannot call method 'getItem' of null at http://m.youtube.com/:844
자세한 내용은 ERROR/Web Console: Uncaught TypeError: Cannot call method 'getItem' of null at
http://m.youtube.com/:844
를 참고하세요.
출처 : https://stackoverflow.com/questions/33079762/android-webview-uncaught-typeerror-cannot-read-property-getitem-of-null
'개발 > 안드로이드' 카테고리의 다른 글
안드로이드: 액션바의 커스텀 레이아웃에서 왼쪽 여백 제거하기 (0) | 2023.02.18 |
---|---|
안드로이드 알림 대화상자에서 사용자 정의 리스트 뷰 표시하기 (0) | 2023.02.18 |
Activity의 content view를 가져오기 (0) | 2023.02.17 |
ViewModel 생성자에 매개변수 추가하기 (0) | 2023.02.16 |
안드로이드에서 사용자 지정 뷰의 높이와 너비를 프로그래밍 방식으로 설정하기 (0) | 2023.02.16 |