gpt4 book ai didi

渐变结束处的Android透明阴影白线

转载 作者:行者123 更新时间:2023-12-04 23:38:27 25 4
gpt4 key购买 nike

我需要有关 android 可绘制线性渐变的帮助,使用自定义渐变作为工具栏的阴影,但我无法在渐变结束时获得白线。

enter image description here
XML 布局,最后一个 RelativeLayout 子元素 View 正在投影。

<?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>

最佳答案

其实没有线
这是一种光学效应,因为梯度是线性的。颜色从黑色平滑地变为透明,但颜色变为透明的“速度”在最后发生急剧变化。您可以阅读更多 here
Gradients example
要解决此问题,您需要使渐变缓出。由于Android不支持渐变的不同曲率,有几种解决方案:

  • 九贴 (推荐)
    在矢量图形编辑器中创建所需的渐变,并在此基础上创建九补丁可绘制。阅读更多关于 9 补丁的信息:https://developer.android.com/guide/topics/graphics/drawables#nine-patch
  • 多重线性渐变
    创建一组具有选定颜色值的线性渐变,以便近似中的曲率对应于缓出的曲率
  • 关于渐变结束处的Android透明阴影白线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42379913/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com