gpt4 book ai didi

android - 可绘制的 XML 形状未呈现所需的颜色

转载 作者:IT王子 更新时间:2023-10-29 00:04:08 27 4
gpt4 key购买 nike

我定义了一个drawable

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#ffffffff" />
<size android:width="60dp"
android:height="40dp" />
</shape>

但是如何在layout定义中使用呢?

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<ImageView
android:src="@drawable/ic_title"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
/>
</LinearLayout>

我仍然只能看到黑色背景。

已编辑:

原来我在 drawable xmlns 声明中遗漏了一个 :。现在这个例子可以在 Gingerbread 设备上运行 :)

最佳答案

在drawable中我使用这个xml代码来定义边框和背景:

<shape xmlns:android="http://schemas.android.com/apk/res/android"> 
<stroke android:width="4dp" android:color="#D8FDFB" />
<padding android:left="7dp" android:top="7dp"
android:right="7dp" android:bottom="7dp" />
<corners android:radius="4dp" />
<solid android:color="#f0600000"/>
</shape>

关于android - 可绘制的 XML 形状未呈现所需的颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3275333/

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