Android 分析XML时出错:schooltraq中的未绑定前缀

Android 分析XML时出错:schooltraq中的未绑定前缀,android,xml,Android,Xml,我在这里搜索并发现了一些与我类似的问题,但我尝试了出现的解决方案,但没有解决我的问题 我在这个xml中有一个错误unbound前缀 <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:ProgressWheel="http://schemas.android.com/apk/res/com.

我在这里搜索并发现了一些与我类似的问题,但我尝试了出现的解决方案,但没有解决我的问题

我在这个xml中有一个错误unbound前缀

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ProgressWheel="http://schemas.android.com/apk/res/com.visualdenim.schooltraq"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="#FFFFFF" >

        <com.example.progressbar.ProgressWheel
            android:id="@+id/progressBarTwo"
            android:layout_width="150dp"
            android:layout_height="150dp"
            ProgressWheel:text="Click\none of the\nbuttons"
            ProgressWheel:textColor="#222222"
            ProgressWheel:textSize="14sp"
            ProgressWheel:rimColor="#44000000"
            ProgressWheel:barLength="60dp" 
            ProgressWheel:barColor="#339BB9"
            ProgressWheel:barWidth="25dp"
            ProgressWheel:rimWidth="25dp" 
            ProgressWheel:spinSpeed="3dp" />
    </LinearLayout>

        <com.example.progressbar.ProgressWheel
            android:id="@+id/progressBarThree"
            android:layout_width="150dp"
            android:layout_height="150dp"
            ProgressWheel:text=""
            ProgressWheel:textColor="#222222"
            ProgressWheel:textSize="14sp"
            ProgressWheel:rimColor="#44000000"
            ProgressWheel:circleColor="#2E9121"
            ProgressWheel:barLength="20dp" 
            ProgressWheel:barColor="#8000"
            ProgressWheel:barWidth="25dp"
            ProgressWheel:rimWidth="25dp" 
            ProgressWheel:spinSpeed="-1dp" />

        <com.example.progressbar.ProgressWheel
            android:id="@+id/progressBarFour"
            android:layout_width="50dp"
            android:layout_height="50dp"
            ProgressWheel:text=""
            ProgressWheel:textColor="#222222"
            ProgressWheel:textSize="14sp"
            ProgressWheel:rimColor="#4000"
            ProgressWheel:barLength="30dp" 
            ProgressWheel:barColor="#222"
            ProgressWheel:barWidth="4dp"
            ProgressWheel:rimWidth="1dp" 
            ProgressWheel:spinSpeed="30dp"
            ProgressWheel:delayMillis="75" />

</RelativeLayout>

更改您的软件包名称

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ProgressWheel="http://schemas.android.com/apk/res/com.example.progressbar" // changed
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="#FFFFFF" >

        <com.example.progressbar.ProgressWheel
            android:id="@+id/progressBarTwo"
            android:layout_width="150dp"
            android:layout_height="150dp"
            ProgressWheel:text="Click\none of the\nbuttons"
            ProgressWheel:textColor="#222222"
            ProgressWheel:textSize="14sp"
            ProgressWheel:rimColor="#44000000"
            ProgressWheel:barLength="60dp" 
            ProgressWheel:barColor="#339BB9"
            ProgressWheel:barWidth="25dp"
            ProgressWheel:rimWidth="25dp" 
            ProgressWheel:spinSpeed="3dp" />
    </LinearLayout>

        <com.example.progressbar.ProgressWheel
            android:id="@+id/progressBarThree"
            android:layout_width="150dp"
            android:layout_height="150dp"
            ProgressWheel:text=""
            ProgressWheel:textColor="#222222"
            ProgressWheel:textSize="14sp"
            ProgressWheel:rimColor="#44000000"
            ProgressWheel:circleColor="#2E9121"
            ProgressWheel:barLength="20dp" 
            ProgressWheel:barColor="#8000"
            ProgressWheel:barWidth="25dp"
            ProgressWheel:rimWidth="25dp" 
            ProgressWheel:spinSpeed="-1dp" />

        <com.example.progressbar.ProgressWheel
            android:id="@+id/progressBarFour"
            android:layout_width="50dp"
            android:layout_height="50dp"
            ProgressWheel:text=""
            ProgressWheel:textColor="#222222"
            ProgressWheel:textSize="14sp"
            ProgressWheel:rimColor="#4000"
            ProgressWheel:barLength="30dp" 
            ProgressWheel:barColor="#222"
            ProgressWheel:barWidth="4dp"
            ProgressWheel:rimWidth="1dp" 
            ProgressWheel:spinSpeed="30dp"
            ProgressWheel:delayMillis="75" />

</RelativeLayout>

这里的包裹名称是什么???