在Android中製作移動的漸變背景
原文地址:http://thetechnocafe.com/make-a-moving-gradient-background-in-android/
這是一個關於如何在Android上製作移動漸變背景的快速教程。
為了實現這個,我們需要使用AnimationList,現在讓我們開始吧。
首先我們需要建立5個漸變的drawables,如下所示:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:angle="225"
android:endColor="#1a2980"
android:startColor="#26d0ce"/>
</shape>
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:angle="45"
android:endColor="#614385"
android:startColor="#516395"/>
</shape>
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:angle="135"
android:endColor="#1d2b64"
android:startColor="#f8cdda"/>
</shape>
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:angle="45"
android:endColor="#ff512f"
android:startColor="#dd2476"/>
</shape>
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:angle="135"
android:endColor="#34e89e"
android:startColor="#0f3443"/>
</shape>
然後再一個新的xml drawable檔案中新增如下程式碼,包含一個AnimationList用來改變background從一個漸變到另一個漸變,在AnimationList標籤中,新增5個item。
<?xml version="1.0" encoding="utf-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/gradient_blue"
android:duration="5000"/>
<item android:drawable="@drawable/gradient_red"
android:duration="5000"/>
<item android:drawable="@drawable/gradient_teal"
android:duration="5000"/>
<item android:drawable="@drawable/gradient_purple"
android:duration="5000"/>
<item android:drawable="@drawable/gradient_indigo"
android:duration="5000"/>
</animation-list>
現在將它作為背景設定到activity的根佈局上,並且不要忘了給View/ViewGroup設定一個id,我們需要在java程式碼中引用他。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/tools"
android:id="@+id/match_parent"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/gradient_animation_list"
android:orientation="vertical">
<!--Content goes here-->
</LinearLayout>
現在我們需要做的就是在java程式碼中告訴animation list開啟動畫,我們可以呼叫AnimationDrawable.start()
方法,程式碼如下:
LinearLayout linearLayout = (LinearLayout)findViewById(R.id.linear_layout);
AnimationDrawable animationDrawable = (AnimationDrawable)linearLayout.getBackground();
animationDrawable.setEnterFadeDuration(2500);
animationDrawable.setExitFadeDuration(5000);
animationDrawable.start();
可以看到,我們引用了將動畫列表作為背景的LinearLayout,然後我們從AnimationDrawable中獲取他的背景,然後我們設定進入和退出動畫的持續時間,並啟動它。
相關文章
- CSS背景漸變CSS
- CSS 背景漸變CSS
- css radial-gradient繪製漸變背景CSS
- iOS之移動中變化的cell(cell逐漸變大效果)iOS
- CSS3 背景漸變CSSS3
- div css背景漸變效果CSS
- Dreamweaver製作滑鼠經過圖片漸漸變暗效果教程
- Dreamweaver中CSS怎麼製作徑向圓形漸變的五種方法CSS
- css3背景顏色漸變CSSS3
- jQuery背景色漸變動畫效果jQuery動畫
- iOS 背景圖層的顏色漸變效果iOS
- javascript網頁背景顏色漸變效果JavaScript網頁
- CSS背景色漸變效果程式碼CSS
- css樣式背景顏色漸變效果CSS
- 46款高大上的網頁漸變背景素材網頁
- 外掛製作--------過NP技術漸漸
- 巧用漸變色打造精緻移動端APPAPP
- PPT怎麼製作漸變UI圖示?PPT扁平化圖示圖片的製作方法UI
- css3實現文字線性漸變,css3實現背景漸變CSSS3
- Photoshop中的漸變工具
- iOS專案開發實戰——製作View的顏色漸變動畫iOSView動畫
- 如何製作高收入移動遊戲遊戲
- jquery實現的元素以動畫方式移動和漸變效果jQuery動畫
- android遊戲開發一:背景圖片的移動Android遊戲開發
- Android中使按鈕的背景變得透明&前端中css設定透明背景Android前端CSS
- css背景漸變相容性問題(非原創)CSS
- CSS3背景漸變效果程式碼例項CSSS3
- css奇技淫巧-色彩漸變與動態漸變CSS
- 移動端網站製作中需要注意哪些方面?網站
- iOS 繪製漸變·基礎篇iOS
- 巧用漸變實現高階感拉滿的背景光動畫動畫
- css漸變背景的頂級用法:linear-gradient()CSS
- js滑鼠懸浮連結背景動畫方式漸變效果JS動畫
- iOS 顏色製作背景圖片iOS
- CSS實現的相容所有瀏覽器的背景漸變程式碼CSS瀏覽器
- 在swoole中製作一款仿製laravel的框架Laravel框架
- Flutter 中漸變的高階用法Flutter
- Dreamweaver網頁元素怎麼製作漸隱漸現效果教程網頁