gpt4 book ai didi

android - Porter-Duff:不同形状的不同行为?

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:27:04 26 4
gpt4 key购买 nike

我有以下布局:

            <LinearLayout
android:id="@+id/myButton"
android:layout_width="@dimen/logo_radius"
android:layout_height="match_parent"
android:background="@drawable/myShape">

<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/driver_half"/>
</LinearLayout>

和以下 myShape 可绘制对象:

    <selector>   
<item><shape android:shape="oval">
<stroke android:color="@android:color/black" android:width="4dp"/>
<solid android:color="@android:color/white" />
</shape></item>
</selector>

我应用了以下过滤器:

myButton.getBackground().setColorFilter( orange, PorterDuff.Mode.ADD );

结果是这样的:

enter image description here

然后我将 myShape 更改为圆角矩形:

    <selector>
<item>
<shape
android:shape="rectangle">
<corners android:bottomLeftRadius="@dimen/logo_radius" android:bottomRightRadius="2dp" android:topLeftRadius="@dimen/logo_radius" android:topRightRadius="2dp"/>
<stroke
android:width="4dp"
android:color="@android:color/black"/>
<solid android:color="@android:color/white"/>
</shape>
</item>
</selector>

结果是这样的:

enter image description here

左边没有应用滤镜,右边有滤镜。

我想得到的:

enter image description here

我应该怎么做才能使用 Porter-Duff 滤镜正确绘制橙色边框?还有其他选择吗?

最佳答案

Porter/Duff 过滤依赖于图像的 alpha channel 。要仅绘制形状边框(没有其他形状空间),您应该将形状背景从白色更改为透明:

<selector>
<item>
<shape
android:shape="rectangle">
<corners android:bottomLeftRadius="@dimen/logo_radius" android:bottomRightRadius="2dp" android:topLeftRadius="@dimen/logo_radius" android:topRightRadius="2dp"/>
<stroke
android:width="4dp"
android:color="@android:color/black"/>
<solid android:color="@android:color/transparent"/>
</shape>
</item>
</selector>

对于这种情况,正确的 PorterDuff.Mode 应该是 SRC_IN

但我不知道为什么椭圆形绘制正确。

更新:

with SRC_IN the border is painted orange, but the filling remains transparent...

您可以像这样将选择器更改为 layer-list 可绘制对象:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@+id/background">
<shape android:shape="rectangle">
<corners
android:bottomLeftRadius="32dp"
android:bottomRightRadius="2dp"
android:topLeftRadius="32dp"
android:topRightRadius="2dp" />
<solid android:color="@android:color/white" />
</shape>
</item>
<item android:id="@+id/border">
<shape android:shape="rectangle">
<corners
android:bottomLeftRadius="32dp"
android:bottomRightRadius="2dp"
android:topLeftRadius="32dp"
android:topRightRadius="2dp" />
<stroke
android:width="4dp"
android:color="@android:color/black" />
<solid android:color="@android:color/transparent" />
</shape>
</item>
</layer-list>

只为边框项设置颜色过滤器:

    LayerDrawable background = LayerDrawable.class.cast(findViewById(R.id.target).getBackground());
background.findDrawableByLayerId(R.id.border).setColorFilter(Color.CYAN, PorterDuff.Mode.SRC_IN);

关于android - Porter-Duff:不同形状的不同行为?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35399637/

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