编写我的代码时首先在LoginActivity中调出一个按钮,然后在按下时加载另一个活动。但截至目前,该应用程序在发布时在我的S4和模拟器上都崩溃了。我尝试过调试模式,但没有收到任何有用的信息。这是我的LoginActivity代码(主要活动):
package com.JTInc.tag;
import android.app.FragmentTransaction;
import android.content.Context;
import android.content.Intent;
import android.graphics.Color;
import android.os.Bundle;
import android.support.v4.app.FragmentActivity;
import android.view.View;
public class LoginActivity extends FragmentActivity {
public void gotomap (View View){
Intent ii = new Intent(getActivity(), MapActivity.class);
startActivity(ii);
}
private void startActivity(Intent ii) {
// TODO Auto-generated method stub
}
private Context getActivity() {
//TODO Auto-generated method stub
return null;
}
}
这是mapviewer.xml代码(主要布局)
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<Button
android:id="@+id/gotomap"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/gotomap"
android:onClick="gotomap" />
</LinearLayout>
感谢任何和所有帮助,谢谢。