Android UI設計小知識——漸層色背景的製作,androidui

來源:互聯網
上載者:User

Android UI設計小知識——漸層色背景的製作,androidui
漸層色的製作

  前幾天突然發現QQ預設的聊天背景是漸層色的,然後學惡習了一下背景色彩坡形的製作,在此總結一下。
  
1. 分別取上中下的是那種顏色。我們這裡使用 黑色”#000000“, 灰色”#aaaaaa“, 白色”#ffffff“。

2. 在drawable建立一個shape,定義gradient標籤,分別定義startstartColor, centerstartColor, endstartColor三個屬性。angle屬性定義旋轉角度。type屬性定義顏色的漸層類型。

<shape xmlns:android="http://schemas.android.com/apk/res/android">    <gradient        android:angle="90"        android:centerColor="#aaaaaa"        android:endColor="#000000"        android:startColor="#ffffff"        android:type="linear"></gradient></shape>

3. 在background中調用即可。

type屬性
  • linear屬性值:解決如所示,漸層上的顏色是線性分布。
  • radial屬性值:從內向外漸層,使用該屬性值時,必須設定gradientRadius屬性。

  • sweep屬性值:這個有點說不清楚,它有點像扇形的漸層,具體看圖會更明了

著作權聲明:本文為博主原創文章,歡迎轉載,轉載請在文章顯眼處說明文章出處並給出串連。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.