在Android中制作移動的漸變背景

原文地址:http://thetechnocafe.com/make-a-moving-gradient-background-in-android/
這是一個關(guān)于如何在Android上制作移動漸變背景的快速教程叔锐。
為了實(shí)現(xiàn)這個碍庵,我們需要使用AnimationList,現(xiàn)在讓我們開始吧。

首先我們需要創(chuàng)建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標(biāo)簽中剑辫,添加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>

現(xiàn)在將它作為背景設(shè)置到activity的根布局上流礁,并且不要忘了給View/ViewGroup設(shè)置一個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>

現(xiàn)在我們需要做的就是在java代碼中告訴animation list開啟動畫神帅,我們可以調(diào)用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中獲取他的背景,然后我們設(shè)置進(jìn)入和退出動畫的持續(xù)時間绍填,并啟動它霎桅。

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市讨永,隨后出現(xiàn)的幾起案子滔驶,更是在濱河造成了極大的恐慌,老刑警劉巖卿闹,帶你破解...
    沈念sama閱讀 211,290評論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件揭糕,死亡現(xiàn)場離奇詭異,居然都是意外死亡比原,警方通過查閱死者的電腦和手機(jī)插佛,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,107評論 2 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來量窘,“玉大人雇寇,你說我怎么就攤上這事“鐾” “怎么了锨侯?”我有些...
    開封第一講書人閱讀 156,872評論 0 347
  • 文/不壞的土叔 我叫張陵,是天一觀的道長冬殃。 經(jīng)常有香客問我囚痴,道長,這世上最難降的妖魔是什么审葬? 我笑而不...
    開封第一講書人閱讀 56,415評論 1 283
  • 正文 為了忘掉前任深滚,我火速辦了婚禮奕谭,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘痴荐。我一直安慰自己血柳,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,453評論 6 385
  • 文/花漫 我一把揭開白布生兆。 她就那樣靜靜地躺著难捌,像睡著了一般。 火紅的嫁衣襯著肌膚如雪鸦难。 梳的紋絲不亂的頭發(fā)上根吁,一...
    開封第一講書人閱讀 49,784評論 1 290
  • 那天,我揣著相機(jī)與錄音合蔽,去河邊找鬼击敌。 笑死,一個胖子當(dāng)著我的面吹牛拴事,可吹牛的內(nèi)容都是我干的愚争。 我是一名探鬼主播,決...
    沈念sama閱讀 38,927評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼挤聘,長吁一口氣:“原來是場噩夢啊……” “哼轰枝!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起组去,我...
    開封第一講書人閱讀 37,691評論 0 266
  • 序言:老撾萬榮一對情侶失蹤鞍陨,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后从隆,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體诚撵,經(jīng)...
    沈念sama閱讀 44,137評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,472評論 2 326
  • 正文 我和宋清朗相戀三年键闺,在試婚紗的時候發(fā)現(xiàn)自己被綠了寿烟。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,622評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡辛燥,死狀恐怖筛武,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情挎塌,我是刑警寧澤徘六,帶...
    沈念sama閱讀 34,289評論 4 329
  • 正文 年R本政府宣布,位于F島的核電站榴都,受9級特大地震影響待锈,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜嘴高,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,887評論 3 312
  • 文/蒙蒙 一竿音、第九天 我趴在偏房一處隱蔽的房頂上張望和屎。 院中可真熱鬧,春花似錦春瞬、人聲如沸眶俩。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,741評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至纲岭,卻和暖如春抹竹,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背止潮。 一陣腳步聲響...
    開封第一講書人閱讀 31,977評論 1 265
  • 我被黑心中介騙來泰國打工窃判, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人喇闸。 一個月前我還...
    沈念sama閱讀 46,316評論 2 360
  • 正文 我出身青樓袄琳,卻偏偏與公主長得像,于是被迫代替她去往敵國和親燃乍。 傳聞我的和親對象是個殘疾皇子唆樊,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,490評論 2 348

推薦閱讀更多精彩內(nèi)容