2016-05-05 2 views
-2

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?

+1

Ihr 'Button' Element ist nicht geschlossen werden. – DeeV

+0

omg es war so einfach Fehler !! – Cesar

Antwort

0

Try this:

<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"> 
</button> 

<TextView      
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> 
+0

danke mein Problem ist jetzt gelöst !! – Cesar