1

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

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;
    }

}

主要活动布局:

<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>
4

1 回答 1

1

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

于 2013-10-15T07:19:50.130 回答