- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我以前用过很多次 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/
我在 LinearLayout 中有一个 RelativeLayout,我用它来显示一些数据: 问题是我希望我的 Ima
我以前用过很多次 toLeftOf,但它突然停止工作了。我试过: android:layout_toLeftOf="@id/spacer" 这是 View : 它给了我错误: Error:(16,
我想在两张图片之间放置一个 EditText... 正常情况下,它工作完美,但我不知道为什么它现在不工作...... 我首先将两张图片放在 RelativeLayout 中,然后添加 EditText
我有一个相对布局,其中左侧有一个 TextView,右侧有一个 Spinner。如果用户选择了不正确的变体,我还需要一个错误图像来显示。
我正在使用 Android 的相对布局,试图让两个按钮并排对齐。但是,当我使用 layout_toLeftOf 时,我的 button02 突然消失了。如果我使用 layout_toRightof 就
我正在制作聊天应用程序。我想在聊天气泡旁边加上时间戳。消息将左对齐(接收)和右对齐(发送)。 因此,我正在寻找一种将 toLeftOf 更改为 toRightOf 的方法。现在,它看起来像这样: 这是
我一直在寻找使用 RelativeLayout 时“toLeftOf”和“toRightOf”问题的解决方案,但还没有找到针对此行为的真正解决方案或好的答案: 基本上,“toLeftOf”的效果不是很
我是一名优秀的程序员,十分优秀!