gpt4 book ai didi

android - 自定义可绘制对象在应用于布局时无法正确显示

转载 作者:行者123 更新时间:2023-11-29 23:01:05 24 4
gpt4 key购买 nike

我设计了一个自定义形状

enter image description here

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">

<item
android:bottom="0dp"
android:left="30dp"
android:right="30dp"
android:top="-30dp">
<shape android:shape="rectangle">
<size
android:width="80dp"
android:height="40dp" />
<solid android:color="@color/colorPrimary" />
<corners
android:bottomLeftRadius="0dp"
android:bottomRightRadius="0dp"
android:topLeftRadius="10dp"
android:topRightRadius="10dp" />
</shape>

</item>


<item>
<shape android:shape="rectangle">
<size
android:width="100dp"
android:height="40dp" />
<solid android:color="@color/colorPrimary" />
<corners android:radius="0dp" />
</shape>
</item>


</layer-list>

现在,当我尝试将其应用于 BottomSheet 布局背景时,它没有任何效果,只是用蓝色背景覆盖了整个屏幕(它变成了一个纯蓝色矩形)

enter image description here

<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/bottom_sheet"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/background_features"
android:padding="32dp"
app:behavior_hideable="false"
app:behavior_peekHeight="@dimen/partial_features_peek_height_50dp"
app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior">

如何在其形状中应用此自定义背景

最佳答案

你可以试试

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">

<item
android:bottom="0dp"
android:left="30dp"
android:right="30dp">
<shape android:shape="rectangle">
<size
android:width="80dp"
android:height="40dp"/>
<solid android:color="@color/colorPrimary"/>
<corners
android:bottomLeftRadius="0dp"
android:bottomRightRadius="0dp"
android:topLeftRadius="10dp"
android:topRightRadius="10dp"/>
</shape>

</item>

<item
android:top="30dp"
>
<shape android:shape="rectangle">
<size
android:width="100dp"
android:height="40dp"/>
<solid android:color="@color/colorPrimary"/>
<corners android:radius="0dp"/>
</shape>
</item>

</layer-list>

如果是您想要实现的布局,请告诉我结果。希望对你有帮助

关于android - 自定义可绘制对象在应用于布局时无法正确显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56911665/

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