为什么Webview会用Gif immage冻结模拟器?

时间:2017-01-26 05:44:50

标签: android webview

我正在使用HTML内容(这是一个gif图像)在Webview中查看。 WEbview成功加载了HTML内容和Gif图像。但是,经过一段时间,模拟器冻结并停止响应。提前感谢您的帮助。

public class ABC extends AppCompatActivity {
      WebView webview;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.abc);
        webview=(WebView)findViewById(R.id.webview) ;
        webview.loadUrl("file:///android_asset/hayder.html");

            }
  }

1 个答案:

答案 0 :(得分:0)

android manifest添加此

<application
    ...
    android:hardwareAccelerated="true"
    ...
    >