gpt4 book ai didi

android - 在android中为RelativeLayout添加背景图片

转载 作者:行者123 更新时间:2023-11-29 14:49:18 26 4
gpt4 key购买 nike

我尝试使用 android:background="@drawable/imageURL" 向 Android 应用添加背景图片。我将图像添加到 drawable-hdpi 文件夹,但出现错误。我正在尝试将图像添加到 RelativeLayout。我也尝试使用 LinearLayout 但它也没有用。

那么如何在 Android 的 RelativeLayout 中为我的应用添加背景图片?

错误是什么?

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/abc.png"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />

</RelativeLayout>

最佳答案

替换

android:background="@drawable/abc.png"

android:background="@drawable/abc"

来自文档:

May be a reference to another resource, in the form "@[+][package:]type:name"

如您所见,扩展名不是属性值的一部分

关于android - 在android中为RelativeLayout添加背景图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23848407/

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