如何设置阴影线?

时间:2018-07-05 14:03:01

标签: android shadow

我不知道怎么做

std::string str("transaction applies: Â Â Â Â Â Â Â Â Â {79}");
std::transform(str.begin(), str.end(), str.begin(), [](char c) -> char {return (c == (char)'\u00C2') ? ' ': c ; });

类似这样的事情: https://i.stack.imgur.com/npZm0.png

1 个答案:

答案 0 :(得分:0)

我认为它将为您提供帮助,

<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item>
        <shape android:shape="line">
            <stroke android:width="8dp"
                android:color="#c7c7c7"
                />
        </shape>
    </item>
    <item android:bottom="4dp">
        <shape android:shape="line">
            <stroke android:width="5dp"
                android:color="#698cc8"
                />
        </shape>
    </item>
</layer-list>

输出是

enter image description here

在第一项中给出所需的阴影颜色。然后在第二项中提供bottom的值。 这意味着第二个项目的高度从底部对应的底部值开始减小,因此我们可以在该行下方看到阴影颜色。