1. 程式人生 > >android webView載入gif圖片並且居中顯示

android webView載入gif圖片並且居中顯示

開源的gifView在我使用的時候 記憶體不釋放,容易引起記憶體洩露,最後不得不使用webView

gif圖片放到asset資料夾下邊,

WebViewgf1=(WebView) findViewById(R.id.gif1);

gf1.loadDataWithBaseURL(null,"<center><imgsrc='file:///android_asset/gif2.gif'></center>","text/html","utf-8", null);

webView在RelativeLayout中居中顯示,如果RelativeLayout設定android:gravity="center" 仍然沒有效果,在webView中設定

              android:layout_centerVertical="true"

       android:layout_centerHorizontal="true"

        android:layout_centerInParent="true"

ondestory()方法裡邊

gf1.loadUrl("about:blank");

gf1.stopLoading();

gf1= null;

回收