Android drawable 渐变色

来源:互联网 发布:软件自学网 下载 编辑:程序博客网 时间:2024/05/16 17:29

安卓 渐变色显示:

效果图:


调用代码:

<RelativeLayout    xmlns:android="http://schemas.android.com/apk/res/android"    xmlns:app="http://schemas.android.com/apk/res-auto"    android:layout_width="match_parent"    android:layout_height="@dimen/nav_header_height"    android:background="@drawable/side_nav_bar"    android:paddingBottom="@dimen/activity_vertical_margin"    android:paddingLeft="@dimen/activity_horizontal_margin"    android:paddingRight="@dimen/activity_horizontal_margin"    android:paddingTop="@dimen/activity_vertical_margin"    android:theme="@style/ThemeOverlay.AppCompat.Dark"></RelativeLayout> 

背景色代码:drawable side_nav_bar.xml

<shape xmlns:android="http://schemas.android.com/apk/res/android"       android:shape="rectangle">    <!-- 渐变色 -->    <gradient        android:angle="135"        android:centerColor="#4CAF50"        android:endColor="#2E7D32"        android:startColor="#81C784"        android:type="linear"/></shape>


0 0