问题描述
- 初学者eclipse报错:not well-formed (invalid token)
-
新建有两个Activity用于两个Activity之间简单的切换,java文件跟xml文件都没问题了,就是在Androidmanifest中声明使用IntentTestActivity和AnotherActivity出问题
代码如下:
<?xml version="1.0" encoding="utf-8"?>
package="com.example.intenttest"
android:versionCode="1"
android:versionName="1.0" ><uses-sdk android:minSdkVersion="8" android:targetSdkVersion="18" /> <application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" > <activity android:name=".IntentTestActivity" android:label="@string/app_name" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name=".AnotherActivity" <intent-filter>//这里报错,Error parsing XML:not well-formed (invalid token) <action android:name="android.guo.action.anotheractivity" /> </intent-filter> </activity> </application>
解决方案
解决方案二:
Eclipse报错could not write metadata for '/remotesystemstempfiles'
Pointcut is not well-formed: expecting '(' at character position 0 anyMethod
XML parse error: not well-formed (invalid token)
解决方案三:
android:name=".AnotherActivity"
将这里改成:
android:name=".AnotherActivity">
解决方案四:
不晓得楼主为嘛会缺少一个“>”,
这些简单的报错信息,要学会阅读,实在不会了,有道,金山翻译
时间: 2024-10-26 23:01:09