編輯:關於Android編程
由於做的項目,要有個動畫的等待效果,第一時間想到的就是Gif(懶,省事),但是試了好多據說能播放Gif的控件,也寫過,但是放到魅族手機上就是不能播放,所有就想了個招,既然Gif能在浏覽器上播放,那android 的 WebView 也能播放,寫了個Demo,果然能播放。
1、將gif的文件放到android的資源文件夾裡面
2、寫個html,將android的gif源放到WebView裡面去加載
<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>
3、代碼中使用
@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); }
好了,現在就可以播放了,感覺能夠適配任何機型。
以上所述是小編給大家介紹的Android中播放Gif動畫取巧的辦法,希望對大家有所幫助!
Android 顏色處理(八) SweepGradient 掃描/梯度渲染為什麼什麼叫掃描渲染呢? 相信大家都看過雷達掃描的效果,尤其是在安全軟件中. &nbs
在Android中,每個應用程序都有自己的進程,當需要在不同的進程之間傳遞對象時,該如何實現呢?顯然, Java中是不支持跨進程內存共享的。因此要傳遞對象,需要把
Android四大組件簡介請簡要介紹Android的四大組件。答案:Android系統有四種組件,這四種組件構成了Android應用的框架,然後由Intent聯系這四種組
一、 實現拍照、選擇圖片並裁剪圖片效果按照之前博客的風格,首先看下實現效果。 二、 uCrop項目應用想起之前看到的Yalantis/