gpt4 book ai didi

android - 矩形作为背景导致黑色背景

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:35:30 25 4
gpt4 key购买 nike

我想在我的 RableRow 周围创建一个边框。我使用以下形状作为背景。

bg_stroke_dotted_right

    <?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:top="-4dp"
android:left="-2dp"
android:bottom="-4dp"

android:drawable="@drawable/stroke_dotted">
</item>
</layer-list>

stroked_dotted 可绘制对象

    <?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<solid android:color="#000000" />
<stroke
android:dashGap="4dp"
android:dashWidth="2dp"
android:width="2dp"
android:color="@color/greyDark" />

</shape>

我不明白为什么使用“bg_stroke_dotted_right”作为背景 - 将背景归档为黑色。只要我将“bg_stroke_dotted_right”添加为背景 - 背景就会变成黑色。

        <TableRow
android:id="@+id/tableRow2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/bg_stroke_dotted_right"
>

enter image description here

最佳答案

在形状上试试这个:

<solid android:color="#00000000" />

在这种情况下,前 2 个“00”是颜色的 alpha,“00”表示透明。

尽情享受吧!

关于android - 矩形作为背景导致黑色背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22900899/

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