編輯:關於android開發
android 顯示gif圖片實例詳解
在android中不支持gif格式的圖片,但是由於我希望在我的程序中剛剛加載的時候有一個小人在跑步表示正在加載。而這個小人跑就是一個gif圖片。也就是希望程序一啟動時就加載gif圖片。在網上查找了一些方法不知道是我使用的android的版本高(android4.4)還是什麼問題就是加載不出來。最後想了一個辦法加載了出來。這個辦法就是將gif放在webView中讓其顯示。
下面是關於這個的代碼:
activity_prepare_fullscreen.xml文件
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<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:background="#F3F3F3"
>
<WebView
android:id="@+id/runWebView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true" />
<TextView
android:id="@+id/fullscreen_content"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/runWebView"
android:layout_centerHorizontal="true"
android:gravity="center"
android:keepScreenOn="true"
android:text="正在加載請等待..."
android:textColor="#33b5e5"
android:textSize="30sp"
android:textStyle="bold" />
</RelativeLayout>
PrepareFullscreenActivity.java 文件
多余的就不貼了,這是主要的兩句
private WebView runWebView=null;
runWebView = (WebView) findViewById(R.id.runWebView);
下一句就是放入文件,文件在assents下放著呢
runWebView.loadDataWithBaseURL(null,"
", "text/html", "UTF-8",null);
Android實戰技巧之四十八:Android上的Java8和kotlin Java和Android這對搭檔目前也在風雨飄搖中。 技術圈子的事,往往被商業利益牽著鼻子
MySQL新特性之mysql_config_editor源碼解析從mysql5.6開始,mysql推出了加密工具mysql_config_editor。在此之前我們通過將
Android自定義view進階-- 神奇的貝塞爾曲線 今天給大家介紹一個非常神奇的曲線,貝塞爾曲線。相信大家之前都有耳聞。 很久之前就久聞該線大名,但是一直不是很了解,
安卓系統設置選項的框架。,安卓系統設置框架首先在res文件中創建一個xml文件夾,創建preference.xml文件,然後寫布局: 1 <?xml versi