Привет всем!Я пытаюсь сделать Android-приложение, но у меня вылазит еррор в Еклипсе:
The markup in the document following the root element must be well-formed and No resource identifier found for attribute 'layout_width' in package 'android'
Эта ошибка в activy_main.xml.Весь код из activy_main.xml:
Code
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/buttonYellow"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/redColor"
tools:context=".MainActivity" />
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="@string/red" />
<Button
android:id="@+id/butHello"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:onClick="butHello_Click"
android:text="Поздороваться" />
<Button
android:id="@+id/butCrowsCounter"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/butHello"
android:text="Считаем ворон" />
<ImageButton
android:id="@+id/imageButton1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toRightOf="@+id/butCrowsCounter"
android:onClick="onClick"
android:src="@drawable/pinkhellokitty" />
<Button
android:id="@+id/buttonYellow"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/textView1"
android:layout_marginTop="49dp"
android:text="@string/yellow" />
<Button
android:id="@+id/buttonRed"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/textView1"
android:text="@string/red" />
<Button
android:id="@+id/buttonGreen"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_below="@+id/buttonYellow"
android:layout_with="match_paernt"
android:text="@string/green" />
</RelativeLayout>
Заранее благодарен!