gpt4 book ai didi

android - 找不到 toLeftOf 资源

转载 作者:太空宇宙 更新时间:2023-11-03 11:29:57 32 4
gpt4 key购买 nike

我以前用过很多次 toLeftOf,但它突然停止工作了。我试过:

android:layout_toLeftOf="@id/spacer"

这是 View :

<View
android:id="@+id/spacer"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginLeft="@dimen/center_margin"
android:layout_marginStart="@dimen/center_margin"
android:layout_marginRight="@dimen/center_margin"
android:layout_marginEnd="@dimen/center_margin" />

它给了我错误:

Error:(16, 34) No resource found that matches the given name (at 'layout_toLeftOf' with value '@id/spacer').
Error:(17, 35) No resource found that matches the given name (at 'layout_toStartOf' with value '@id/spacer').

它在应用程序的其他位置有效,但出于某种原因在此处无效。谁知道怎么了?

编辑 - 是的,它在 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:screenOrientation="portrait"
android:fitsSystemWindows="true"
android:focusableInTouchMode="true" >

<TextView
android:id="@+id/txt1" />

<View
android:id="@+id/spacer" />

<TextView
android:id="@+id/txt2" />

</RelativeLayout>

最佳答案

经过进一步审查,我发现问题是我试图在创建 View 之前引用它。我通过将 @id/spacer 更改为 @+id/spacer

来解决这个问题

关于android - 找不到 toLeftOf 资源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29858378/

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