2016-05-05 13 views
-2

これは私のXMLコードです。間違っている箇所を教えてください。XMLを解析中にエラーが発生しました:XML形式のTextViewに無効なトークンがありません

<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> 

私が間違っているところを教えてください。どうすればこのエラーを取り除くべきですか教えてください。

+1

あなた 'Button'要素がクローズされていません。 – DeeV

+0

mgそれはとても簡単なエラーでした! – Cesar

答えて

0

はこれを試してみてください:

<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

私の問題は今解決されました! – Cesar

関連する問題