Dies ist mein XML-Code, bitte sagen Sie mir, wo ich falsch liege und bitte sagen Sie mir, wie ich diesen Fehler entfernen soll?Fehler beim Parsen von XML: nicht wohlgeformt (ungültiges Token) in TextView in XML
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:text="@string/dob"
<TextView **error is coming here in text view**
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="23dp"
android:text="@string/cd" />
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="18dp"
android:text="@string/bd" />
<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:text="@string/Result" />
</RelativeLayout>
Bitte sagen Sie mir, wo ich falsch mache und bitte sagen Sie mir, wie ich diesen Fehler entfernen soll?
Ihr 'Button' Element ist nicht geschlossen werden. – DeeV
omg es war so einfach Fehler !! – Cesar