1
I have the following problem, I already have a listview and I want to create another, but is giving the following error:
<ListView
android:id="@android:id/listView" <----- ***Error: No resource found that matches the given name (at 'id' with value '@android:id/listView').***
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
</ListView>
remove the "@android:id/listview" prefix and replace with "@+id/listview" and try again
– rsicarelli
That’s right, thank you :)
– Gustavo
Good! I answered with the explanation
– rsicarelli