如何阻止我的应用程序崩溃

时间:2016-05-06 10:25:35

标签: android xml

我创建了一个简单的应用程序RealHeartRate,我使用可点击文本(“检查你的心率”)将主要活动链接到一个新活动,但每次运行应用程序时,主要活动(MainActivity.java)都成功运行,但是我点击文本(“检查你的心率”),它应该将我链接到应用程序崩溃的下一个活动(display.java)。我知道答案可能只是盯着我的脸,但我看起来并不是一个好的程序员。请问这是什么原因以及如何解决。

以下是我的MainActivity.java代码

   package kingsley.realheartrate;

  import android.os.Bundle;
  import android.support.design.widget.FloatingActionButton;
  import android.support.design.widget.Snackbar;
  import android.support.v7.app.AppCompatActivity;
  import android.support.v7.widget.Toolbar;
  import android.view.View;
  import android.content.Intent;

 public class display extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_display);
    Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
    setSupportActionBar(toolbar);
    Intent startingIntent = getIntent();

    String aString = startingIntent.getStringExtra("You have taken the wise step of knowing your heart");
}
}

下面是我的第二个活动display.java

的代码
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="kingsley.realheartrate">

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">
    <activity
        android:name=".MainActivity"
        android:label="@string/app_name"
        android:theme="@style/AppTheme.NoActionBar">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name=".display"
        android:label="@string/title_activity_display"
        android:theme="@style/AppTheme.NoActionBar"></activity>
</application>

 </manifest>

以下是我的Android清单文件

             <?xml version="1.0" encoding="utf-8"?> <android.support.design.widget.CoordinatorLayout                                    xmlns:android="http://schemas.android.com/apk/res/android"
   xmlns:app="http://schemas.android.com/apk/res-auto"
   xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
 android:layout_height="match_parent"
  android:fitsSystemWindows="true"
  tools:context="kingsley.realheartrate.MainActivity">

<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">

<android.support.v7.widget.Toolbar
    android:id="@+id/toolbar"
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    android:background="?attr/colorPrimary"
    app:popupTheme="@style/AppTheme.PopupOverlay" />

        </android.support.design.widget.AppBarLayout>

      <include layout="@layout/content_main" />
        </android.support.design.widget.CoordinatorLayout>

这是activity_main.xml的代码

{{1}}

如果有人能够看一下并帮助解决方案,我将非常感激。

4 个答案:

答案 0 :(得分:2)

替换

String aString = startingIntent.getStringExtra("You have taken the wise step of knowing your heart");

用它...这将保护应用程序崩溃

String aString="";
try{
  Bundle extras = getIntent().getExtras(); 

  if (extras != null) {
   aString = extras.getString("aString");
  }
}catch (Exception e){e.printStackTrace();}

答案 1 :(得分:0)

  String aString = startingIntent.getStringExtra("You have taken the wise step of knowing your heart");

  //change this to 

  String aString = startingIntent.getStringExtra("aString");

你应该在这里给关键..

答案 2 :(得分:0)

因为您还没有发布第二个活动的布局文件,我猜您在该布局上没有任何toobar,活动就会崩溃

Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);

onCreate(Bundle savedInstanceState)

答案 3 :(得分:0)

谢谢大家,我为解决这个问题所做的就是让onClick方法与我在main_activity.xml文件中声明的方法相同,并且它有效。我们的想法是查看logcat文件以找出应用程序崩溃的原因。再次感谢