我今晚刚开始开发我的第一个 Android 应用程序,遇到了一个错误,我一生都看不到来自哪里
当我在模拟器中启动我的测试应用程序时,它会强制关闭并显示错误“应用程序测试应用程序(psprocess Test.App)已意外停止。请重试。”
到目前为止,我已经检查过:
Android 开发输出 - 没有任何问题,可以正常启动并定位活动和意图
模拟器输出 - 根本没有报告
TestApp 调试 - 报告 BUILD SUCCESSFUL
然后我继续检查用于布局的 main.xml,并在 NetBeans 中进行验证时报告“cvc-elt.1:找不到元素'LinearLayout'的声明”
我的 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:paddingLeft="16dp"
android:paddingRight="16dp"
android:orientation="vertical" >
<Button
android:id="@+id/used_cars"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/used_cars" />
<Button
android:id="@+id/used_vans"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/used_vans" />
<Button
android:id="@+id/dealers"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/dealers" />
</LinearLayout>
我已经搜寻了有关如何解决此问题的信息,但找不到答案
如果我缺少基本的东西,有人可以请教吗?
在此先感谢
巴里