gpt4 book ai didi

android层列表不会同时显示渐变和实体

转载 作者:行者123 更新时间:2023-11-29 14:32:27 24 4
gpt4 key购买 nike

我不明白这段代码是怎么回事。

<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >

<item android:bottom="10dp">
<shape android:shape="rectangle" >
<solid android:color="#ff8898A4" />
</shape>
</item>
<item>
<shape android:shape="rectangle" >
<gradient
android:angle="90"
android:endColor="#ffD6DDD8"
android:startColor="#ffB1BBC3" />
</shape>
</item>
</layer-list>

如果我将实体移动到渐变下方,则渐变不会显示。但是现在实体不会显示的方式。我对两个固体没有任何问题。我做错了什么?

最佳答案

您正在将实心形状项目放置在渐变形状项目之上。

您需要为渐变形状添加一些填充。您正在做相反的事情,将填充添加到实体形状而不是渐变形状,试试这个:

<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >

<item>
<shape android:shape="rectangle" >
<solid android:color="#ff8898A4" />
</shape>
</item>
<item android:bottom="10dp">
<shape android:shape="rectangle" >
<gradient
android:angle="90"
android:endColor="#ffD6DDD8"
android:startColor="#ffB1BBC3" />
</shape>
</item>
</layer-list>

关于android层列表不会同时显示渐变和实体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17372968/

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