gpt4 book ai didi

android - 图层列表可绘制对象未正确绘制

转载 作者:数据小太阳 更新时间:2023-10-29 03:02:32 25 4
gpt4 key购买 nike

我正在尝试为我的 Android 应用程序创建一个简单的图层列表可绘制对象。当我将可绘制对象设置为 ImageView 的 src 时,它绘制不正确:

<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:top="20dp">
<shape android:shape="oval">
<solid android:color="@color/dark_gray" />
</shape>
</item>

<item android:left="20dp">
<shape android:shape="oval">
<solid android:color="@color/dark_gray" />
</shape>
</item>
</layer-list>

只有两个椭圆,彼此有一点偏移。没什么特别的(只是一个测试),但它不起作用。

看来 android:left|right|bottom|top 是问题所在。如果我只使用这些命令中的一个,则可以正确绘制可绘制对象。如果使用了两个或更多,则 ImageView 将保持为空。

作品:

   <layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:top="20dp">
<shape android:shape="oval">
<solid android:color="@color/dark_gray" />
</shape>
</item>

<item>
<shape android:shape="oval">
<solid android:color="@color/dark_gray" />
</shape>
</item>
</layer-list>

不起作用(如第一个示例):

   <?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="..." >
<item android:top="20dp" android:left="20dp">
<shape android:shape="oval">
<solid android:color="@color/dark_gray" />
</shape>
</item>
</layer-list>

这里有什么问题吗?

编辑:@Rod_Algonquin我使用一个非常简单的布局来测试可绘制对象:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center"
android:background="#aaa" >

<ImageView
android:id="@+id/image_logo"
android:layout_width="100dp"
android:layout_height="100dp"
android:src="@drawable/testDrawable" >
</ImageView>
</LinearLayout>

似乎 android:left|right|bottom|top 参数的数量不是问题的根源,而是正在使用的具体值。

这个 drawable 工作正常并且:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:top="2dp">
<shape android:shape="oval">
<solid android:color="#0f0" />
</shape>
</item>
</layer-list>

这个不绘制任何东西(ImageView 只是透明的):

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:top="1dp">
<shape android:shape="oval">
<solid android:color="#0f0" />
</shape>
</item>
</layer-list>

这里唯一的区别是 android:top 的值。 1dp 不起作用。 2dp 没有任何问题。

有什么想法吗?

最佳答案

问题是您正在使用 layer-list 可绘制对象作为 ImageView 的图像资源。 android:src 将只接受一个图像而不是一个可绘制的,因此里面什么都没有。

解决方法:

与其将它放在 android:src 中,不如将它放在 background 中,您可以在其中自由使用 drawable。

 <ImageView
android:id="@+id/image_logo"
android:layout_width="100dp"
android:layout_height="100dp"
android:background="@drawable/testDrawable" >
</ImageView>

关于android - 图层列表可绘制对象未正确绘制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24116029/

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