我是Android应用程序编程的新手, 在小学阶段,我无法修复它,任何人都可以帮助我,然后我可以继续学习吗?
main.xml中
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<EditText
android:id="@+id/edit_text"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="@string/hint_text"
/>
</LinearLayout>
的strings.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="hello">Hello World, Example3Activity!</string>
<string name="app_name">Example3</string>
<string name="hint_text">Enter your name</string>
</resources>
错误讯息: 解析XML时出错:找不到元素
答案 0 :(得分:0)
我不确定这是否是您的问题,但您可以查看此post
基本上它是说,如果发生这种情况,你需要删除main.out.xml文件(将重新生成),并在你的应用程序的.java文件而不是xml中运行你的应用程序文件。
我不知道它是否有效,但试一试。