gpt4 book ai didi

android - 如何检查 "Unfortunately project has stopped"错误的原因?

转载 作者:行者123 更新时间:2023-11-30 03:19:45 25 4
gpt4 key购买 nike

我想在主 Activity 的 onCreate 中显示一个 Activity 。当我在模拟器上运行项目时,它说“不幸的是项目已停止”。能不能告诉我我的代码有什么问题,我每次应该如何检查这个错误的原因?

public class MainActivity extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

Intent i = new Intent(this,AppMenu.class);
startActivity(i);
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}

}

主要 Activity 布局:

<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=".MainActivity" >

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />

</RelativeLayout>

最佳答案

你应该看看你的 Logcat 在你的代码上放置断点然后跟踪它,然后如果没有成功找出你的问题和 Logcat 在这里发布的问题,但我认为问题是你没有定义你的 Activity list 文件

关于android - 如何检查 "Unfortunately project has stopped"错误的原因?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19375334/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com