学习《第一行代码》 然后看书之后自己试一遍就报错....求指点
com.android.ide.eclipse.adt.internal.project.AndroidManifestHelper] Parser exception for F:\AndriodTest\ActivityTest\AndroidManifest.xml: 与元素类型 "activity" 相关联的属性 "andriod:name" 的前缀 "andriod" 未绑定。
ActivityTest] Error in an XML file: aborting build.
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.activitytest"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="L"
android:targetSdkVersion="21" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
andriod:name="com.example.activitytest.FirstActivity"
andriod:label="This is">
<intent-filter>
<action andriod:name="android.intent.action.MAIN" />
<category andriod:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
是你写错了,应该是android,而不是andriod。你仔细看看。记得采纳哦。
This is是什么鬼,把这个改了。