gpt4 book ai didi

android - 找不到与给定名称匹配的资源

转载 作者:行者123 更新时间:2023-11-29 16:50:26 24 4
gpt4 key购买 nike

这是我的(相关的)XML 代码:

<RelativeLayout

<Button
android:id="@+id/menu_button"
android:layout_width="50dp"
android:layout_height="0dp"
android:layout_marginBottom="60dp"
android:layout_marginTop="8dp"
android:background="@mipmap/ic_launcher"
android:onClick="myOnClickMethod"
android:layout_below="@id/whiteBackground" <---- ERROR HERE
android:layout_alignParentBottom="true"
android:layout_centerInParent="true"/>

<ImageView
android:id="@+id/whiteBackground" <---- HERE IS THE ID
android:layout_width="350dp"
android:layout_height="350dp"
android:contentDescription="@string/white_background"
android:tag="white"
android:visibility="visible"
android:background="@drawable/myrect"
android:elevation="15dp"
android:layout_below="@id/image_text_editor"
android:layout_centerInParent="true"/>

<Button
android:id="@+id/text_size_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/size"
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp"
android:layout_marginRight="8dp"
android:layout_marginLeft="8dp"
android:visibility="visible"
android:onClick="SizeChange"
android:layout_below="@id/whiteBackground" <---- ALSO BEING USED HERE (NO ERROR)
android:layout_toLeftOf="@id/menu_button"/>

<Button
android:id="@+id/move_Button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/menu_button"
android:layout_below="@id/whiteBackground" <----ALSO BEING USED HERE (NO ERROR)
android:layout_margin="8dp"
android:onClick="MoveChange"
android:text="MOVE"/>
</RelativeLayout>

我在上面提到的行中遇到错误。它告诉我

找不到与给定名称匹配的资源(在“layout_below”中值为“@id/whiteBackground”)。

我不确定为什么会发生这种情况,因为正如您所见,ID/元素位于其正下方的标注位置。正如您所看到的,下面的其他 2 个按钮也使用相同的 layout_below="@id/whiteBackground" 并且那里没有错误。这只是第 1 行。

如果有人能告诉我发生了什么,将不胜感激。

谢谢

最佳答案

你可以改变

layout_below="@id/whiteBackground"

layout_below="@+id/whiteBackground"

希望它也希望你!

关于android - 找不到与给定名称匹配的资源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46615590/

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