I think its because images are large, but, if anybody has different opinion, please, share.
So, im receiving notification like HTML, and want to present it in web view. Now, when i present notifications with smaller pictures, everything works fine. When I present notifications with bigger picture(s), text is there, but image has icon like it crashed. What can I do to make this work?
mWebView = (WebView) root.findViewById(R.id.party_web_view);
mWebView.getSettings().setDomStorageEnabled(true);
mWebView.getSettings().setAllowFileAccessFromFileURLs(true);
mWebView.getSettings().setAllowUniversalAccessFromFileURLs(true);
mWebView.loadData( mContent, "text/html", "UTF-8");