我正在尝试开发一款需要用户录制他的声音的Android应用。 我正在关注http://developer.android.com/guide/topics/media/audio-capture.html
上的开发指南Eclipse在我的清单文件中给出了这个错误
The prefix "adroid" for attribute "adroid:name" associated with an element type "uses- permission" is not bound.`
这是我的清单文件
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.rectest"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="10"
android:targetSdkVersion="19" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.RECORD_AUDIO"/>
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.rectest.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
答案 0 :(得分:0)
您第一次编写代码时看起来有错字错误。
`The prefix "adroid" for attribute "adroid:name" associated with an element type "uses- permission" is not bound`.`
因为它应该是“android”而不是“adroid”。 您附加的代码看起来很好,因此您应该尝试清理并重新构建项目。 转到项目 - &gt;清洁 - &gt;选择您的项目。如果这样,请尝试重启你的日食。