Android XML not well formed? -


'<?xml version="1.0" encoding="utf-8"?> <tablelayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="@drawable/droid_background">  <textview   android:layout_height="wrap_content"  android:gravity="center_horizontal" android:text="@string/hello" android:textcolor="#ffffff" android:textstyle="bold"/>   <relativelayout android:layout_width="fill_parent" android:layout_height="fill_parent" />  <button android:drawable="@drawable/toggleselection" android:layout_alignbottom="true" android:layout_alignparentleft="true" />  </relativelayout>   </tablelayout>' 

whats not well-formed this? elements terminated. right?

relativelayout closed twice.

<relativelayout android:layout_width="fill_parent" android:layout_height="fill_parent" />    <!-- here --> <button android:drawable="@drawable/toggleselection" android:layout_alignbottom="true" android:layout_alignparentleft="true" /> </relativelayout>                         <!-- , here again --> 

Comments

Popular posts from this blog

c++ - Is it possible to compile a VST on linux? -

java - Output of Eclipse is rubbish -

jquery - Confused with JSON data and normal data in Django ajax request -