0

当我编译我的代码时,代码中出现布局文件错误:

解析 XML 时出错:未绑定前缀

我该如何解决?我在一个布局文件中使用了两种不同的布局。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:pj="http://schemas.android.com/apk/res/com.mypackage"
    xmlns:bm="com.mypackage"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/lblUnabletoProceed"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="1" />

    <TextView
        android:id="@+id/lblWelcome"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="2" />

    <TextView
        android:id="@+id/lblYouraccountbalance"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="3" />

    <TextView
        android:id="@+id/lblNoRecentTransactions"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="4" />

    <TextView
        android:id="@+id/lblLastTransactions"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="5" />

    <TextView
        android:id="@+id/lblTransactionDate"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="6" />

    <TextView
        android:id="@+id/lblAmount"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="7" />

    <TextView
        android:id="@+id/lblInquiriesNTransactions"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="8" />

    <TextView
        android:id="@+id/lblAgAppHelperMethods"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="9" />

    <TextView
        android:id="@+id/lblCustomAgAppHelperMethods"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="10" />

    <LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:pj="http://schemas.android.com/apk/res/com.mypackage"
        xmlns:bm="com.mypackage"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_weight="1"
        android:gravity="center_vertical"
        android:orientation="vertical"
        android:padding="5dip" >

        <com.mypackage.controls.Carousel
            android:id="@+id/carousel"
            android:layout_width="fill_parent"
            android:layout_height="206dp"
            android:layout_weight="0.92"
            android:animationDuration="200"
            pj:Items="@array/entries"
            pj:SelectedItem="0"
            pj:UseReflection="true" />
    </LinearLayout>

    <com.mypackage.SatelliteMenu
        android:id="@+id/menu"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom|left"
        android:layout_margin="8dp"
        sat:closeOnClick="true"
        sat:expandDuration="500"
        sat:mainImage="@drawable/ic_launcher"
        sat:satelliteDistance="170dp"
        sat:totalSpacingDegree="90" />

</LinearLayout>
4

2 回答 2

0

您似乎在尝试添加菜单按钮,错误在

<com.mypackage.SatelliteMenu...need not to add like this
于 2012-07-24T05:18:02.060 回答
0

朋友你好,

          viewing your layout code,I think problem is that you have not include namespace in your root element which you add in LinearLayout child element;"

xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:pj="http://schemas.android.com/apk/res/com.mypackage"

将此添加到您的根元素并查看您的代码,我认为您也在使用卫星菜单库,它也需要命名空间包含在您的根元素中。

于 2012-07-24T06:13:53.917 回答