我以前用过很多次 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
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/

10-10 10:18