gpt4 book ai didi

android - RelativeLayout 的 layout_above 给出 "No resource found"错误

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:51:21 28 4
gpt4 key购买 nike

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<ListView
android:layout_above="@id/btn_4" <-- this line error: No resource found
android:layout_width="match_parent"
android:layout_height="200dp" />
<Button android:id="@+id/btn_4" <-- I declare the id here
android:layout_alignParentBottom="true"
android:layout_height="wrap_content"
android:layout_width="match_parent" />
</RelativeLayout>

有什么建议吗?

最佳答案

据我了解,第一次在layout xml中使用id,需要在其前面加一个+号。

来自Declaring Layout文档:

The plus-symbol (+) means that this is a new resource name that must be created and added to our resources (in the R.java file).

因此,将“+”添加到 ListView 布局中的第一个 btn_4 引用,您可以从 Button 布局中的 android:id 属性中删除不必要的“+”。

关于android - RelativeLayout 的 layout_above 给出 "No resource found"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7066141/

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