0

GIF画像をWebビューに読み込もうとしています。完全にロードされていますが、画面内に収まるようにしたいです。つまり、スクロールバー (水平/垂直) は必要ありません。横側は付いていますが、縦側は付いていません。誰でも私を助けてください。

アクティビティ

public class MainActivity extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    // Using Web view
    setContentView(R.layout.activity_main);

    WebView view = (WebView) findViewById(R.id.animationview);

    // Only hide the scrollbar, not disables the scrolling:
    view.setVerticalScrollBarEnabled(false);
    view.setHorizontalScrollBarEnabled(false);

    // Settings
    WebSettings settings = view.getSettings();
    settings.setLoadWithOverviewMode(true);
    settings.setUseWideViewPort(true);
    settings.setSupportMultipleWindows(true);

    // Load the GIF
    String strUrl = "file:///android_asset/lk_animation.gif";
    view.loadUrl(strUrl);
}

}

レイアウト

< LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >


< WebView
    android:id="@+id/animationview"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />

< / LinearLayout>

ここに画像の説明を入力

4

1 に答える 1