我不明白这段代码发生了什么。
<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>
如果我将实体移动到渐变下方,则渐变不会显示。但它现在是固体的方式不会显示出来。我对两个固体没有任何问题。我究竟做错了什么?