我刚开始使用eclipse开发Android应用程序。我创造了'helloWorld'我试图在我自己创建的avd设备的模拟器上运行的应用程序。
早些时候它显示'不幸的是应用程序已停止',所以我尝试通过增加启动超时时间来解决它,现在它是10000毫秒。但仍然没有解决。 我该怎么办?请帮忙。
我的xml文件是:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="course.examples.helloandroid.MainActivity" >
<TextView
android:id="@+id/helloWorld"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</RelativeLayout>
和我的MainActivity.java文件
这是我的logcat文件:
这适用于我正在创建的任何avd设备实例。请帮忙。
编辑: 我的Manifest.xml文件:
答案 0 :(得分:1)
有时在AVD设备中会发生这种情况......我建议连接Android手机并尝试使用它。它为您提供正确的输出。此外,您还可以尝试在xml文件中将“hello-world”放入android:text =“hello world”并删除java文件中的set方法。我希望它有所帮助,但尝试使用基于android的设备。我有同样的问题,当我使用真实设备时它就解决了