机器人:ID列表视图视图、机器人、列表、ID

2023-09-06 04:42:20 作者:↘心冷致命

我在我的XML声明的列表视图:

I have a list view declared in my xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical" 
    android:background="#F7EFE8">

    <ListView android:id="@+id/android:list"
          android:layout_width="fill_parent"
          android:layout_height="fill_parent"/>
        <TextView android:id="@+id/android:empty"
          android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/no_message"/>
</LinearLayout>

但是,当我试图声明/用它去渣,未找到标识。但是,当我重​​新命名列表视图别的东西,并尝试使用它,我可以看到它R.id.的 _ 的,但是当R.id.list我找不到它。而且如果我不使用android:名单有一个错误,应该有一个列表视图id为机器人:名单。任何帮助吗?

But when I try to declare/use it to java, the id is not found. But when i rename the list view to something else and try to use it i can see it "R.id._" but when R.id.list I can't find it. And If I didn't use the android:list there's an error that there should be a list view whose id is android:list. Any help here?

推荐答案

您的ListView对象的id应该被指定为机器人:ID =@机器人:ID /列表

Your ListView object id should be specified either as android:id="@android:id/list"

ListView lv = (ListView) findViewById(android.R.id.list);

还是应该有一些其他的id例如机器人:ID =@ + ID / sampleList

ListView lv = (ListView) findViewById(R.id.sampleList);

检查: ListActivity

和列表

希望这会有所帮助。