ウェブビューに問題があります。フルスクリーンではロードされません。stackoverflow からすべての投稿回答を試しましたが、問題を解決できませんでした (webview の幅と高さは match-parent/fill-parent の両方で試しました)
これをhtmlで使用しています
<meta content="height = device-height,width = device-width, initial-scale = 1.0, minimum-scale = 1.0,maximum-scale = 2.0, target-densitydpi = dpi_value"/>
また、コードではマップ設定も設定しています
webview.getSettings().setUseWideViewPort(true);
webview.getSettings().setLoadWithOverviewMode(true);
webview.getSettings().setJavaScriptEnabled(true);
webview.getSettings().setBuiltInZoomControls(true);
次のようなマニフェストのすべての画面をサポートしてみました
<supports-screens android:smallScreens="true"
android:normalScreens="true" android:largeScreens="true"
android:anyDensity="true" />
サーバーから追加画像をロードしています (画像サイズは 800x720)。他のデータではなく、ロードしている画像のみ。