No resource found that matches given name in main.xml
Posted
by AndroidBeginner
on Stack Overflow
See other posts from Stack Overflow
or by AndroidBeginner
Published on 2010-05-22T18:14:02Z
Indexed on
2010/05/22
18:20 UTC
Read the original article
Hit count: 849
android
This is really starting to drive me crazy.
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@id+/textview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="@string/hello"/>
Produces the following error message: "Error: no resource found that matches the given name (at 'id' with value '@id+/textview').
This is copy and pasted from the Android hello world example.
© Stack Overflow or respective owner