我正在準備我的android應用程序,我想在其中創建兩行。在第二個tableRow上顯示此錯誤。但我無法理解,如何解決該錯誤。 錯誤是「繼根元素的文檔中的標記也必須是良好的。」這是在第二錶行xml文件中的錯誤
<?xml version="1.0" encoding="utf-8"?>
<TableRow
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/tableRow1">
<!-- Screen Design for the SONGS -->
<ViewFlipper android:id="@+id/viewFlipper1"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</ViewFlipper>
</TableRow>
<TableRow
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:id="@+id/tableRow2"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</TableRow>
什麼是錯誤? – 2012-03-23 18:57:49
根元素之後的文檔中的標記必須是格式良好的。它是在第二行 – Ashishsingh 2012-03-23 19:05:42