当前位置: 代码迷 >> Android >> 求解答:error: Error parsing XML: unbound prefix,该如何解决
  详细解决方案

求解答:error: Error parsing XML: unbound prefix,该如何解决

热度:119   发布时间:2016-05-01 21:31:23.0
求解答:error: Error parsing XML: unbound prefix
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical" >
  <TableLayout  
  <TextView
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  android:stretchColumns="1">
  <TableRow>
   
  android:text="测试Layout:"
  abdroid:id="@+id/layoutTextView01"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:textColor="@color/red_bg"  
  />
  <EditText  
  android:text=""
  android:id="@+id/EditText01"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
   
  />
  </TableRow>
  <TableRow android:gravity="right">
  <Button
  android:text="Test"
  android:id="@+id/layoutButton01"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"/>
  </TableRow>
   
  ></TableLayout>

</LinearLayout>


菜鸟求助,望各位大虾慷慨解答,非常感谢!

------解决方案--------------------
多个地方错误,拼写不对,属性不对

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TableLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:stretchColumns="1">
<TableRow>
 
<TextView
android:text="测试Layout:"
android:id="@+id/layoutTextView01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#ff0000"/>

<EditText
android:text=""
android:id="@+id/EditText01"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
 
</TableRow>
<TableRow android:gravity="right">
<Button
android:text="Test"
android:id="@+id/layoutButton01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</TableRow>
</TableLayout>
</LinearLayout>
  相关解决方案