I am getting this error:
Multiple annotations found at this line: - The markup in the document following the root element must be well- formed. - error
An XML document can only have 1 root element. You have 3 such elements. You should enclose your TextView elements inside a layout, such as a LinearLayout:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- TextView elements here -->
</LinearLayout>
Remove the xmlns attribute on the first TextView element.
you should encapsule your elements in layouts, such as LinearLayout. You can look at a layout config file in existence.