我需要有关android drawable线性渐变的帮助,使用自定义渐变作为工具栏中的阴影,但我不能在渐变的末尾获得白线的装备。
XML布局,最后一个RelativeLayout子元素视图正在丢弃阴影。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<android.support.v7.widget.Toolbar xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:titleTextColor="@android:color/white"
android:weightSum="1">
<android.support.design.widget.TabLayout
android:id="@+id/tabLayout_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:tabIndicatorColor="@color/tabIndicator"
app:tabIndicatorHeight="3dp"
app:tabMode="fixed"
app:tabPaddingEnd="12dp"
app:tabTextAppearance="@style/customTabLayout"
android:layout_weight="0.90"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true">
<android.support.design.widget.TabItem
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<android.support.design.widget.TabItem
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</android.support.design.widget.TabLayout>
</android.support.v7.widget.Toolbar>
<android.support.v4.view.ViewPager
android:id="@+id/viewPager_main"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_alignParentBottom="true"
android:layout_below="@+id/toolbar" />
<View
android:layout_width="match_parent"
android:layout_height="14dp"
android:background="@drawable/drop_shadow"
android:layout_below="@+id/toolbar"/>
</RelativeLayout>
使用渐变绘制
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:type="linear"
android:angle="270"
android:endColor="#00000000"
android:startColor="#5a000000" />
</shape>