因爲作的項目,要有個動畫的等待效果,第一時間想到的就是Gif(懶,省事),可是試了好多聽說能播放Gif的控件,也寫過,可是放到魅族手機上就是不能播放,全部就想了個招,既然Gif能在瀏覽器上播放,那android 的 WebView 也能播放,寫了個Demo,果真能播放。html
一、將gif的文件放到android的資源文件夾裏面android
二、寫個html,將android的gif源放到WebView裏面去加載web
<RelativeLayout 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:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity"> <WebView android:id="@+id/webview" android:layout_width="match_parent" android:layout_height="match_parent"> </WebView> </RelativeLayout>
三、代碼中使用瀏覽器
@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); WebView webView = (WebView) findViewById(R.id.webview); webView.loadDataWithBaseURL(null, "<HTML><body bgcolor='#f3f3f3'><div align=center><IMG src='file:///android_asset/load_wait_1_gif.gif'/></div></body></html>", "text/html", "UTF-8",null); }
好了,如今就能夠播放了,感受可以適配任何機型ide