在不创建新的Intent Android的情况下将数据从一个活动发送到另一个活动

时间:2014-11-08 19:01:09

标签: java android android-intent

我有一个迫在眉睫的问题,关于Android应用程序开发,目前正在讨论我。

在我的应用程序中,它完全按照我想要的方式工作,除了一部分我有问题找出我将如何将一段数据从一个活动发送到另一个活动而不需要新的意图。

在我的代码中,用户输入他的名字,质量和高度,当用户点击按钮计算时,它将新意图中的所有值都带到第二个活动,在那里,它计算用户的BMI 。 现在,我想将这个新计算的BMI发送回第一个活动而不创建新意图但我现在肯定如何去做那个

以下是我的代码的相关部分

主要Activity.java

package mobileapp.melvin.bmicalculator;

import android.app.Activity;
import android.app.AlertDialog;
import android.os.Bundle;
import android.view.*;
import android.content.*;
import android.widget.*;

public class MainActivity extends Activity {

public String name,mass,height,bmi;
public EditText nameField, massField, heightField;

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


    bmi = getIntent().getStringExtra("BMI");

    //Create "TextFields" By getting ID of Editviews from Main XML
    nameField = (EditText) findViewById(R.id.mText_box1);
    massField = (EditText) findViewById(R.id.mText_box2);
    heightField = (EditText) findViewById(R.id.mText_box3);

    //Button To calculate and display BMI as TextViews
    Button launchBtn = (Button) findViewById(R.id.mButton_calculate);
    launchBtn.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            //Check is The "Textfields" have values
            if(!verifyData()){
                return;
            }
            /*Create a new Intent to Launch another activity 
             * To display all the Values gotten from
             * The TextFields as Normal Text Values
             */
            Intent launcher = new Intent(v.getContext(),BMI1.class);
            //This intent then passes these values over to the next Intent
            launcher.putExtra("Name", name);
            launcher.putExtra("Mass", mass);
            launcher.putExtra("Height", height);
            //We then start this new activity with the new Intent
            startActivity(launcher);
        }
    });
}

BMI1.java

package mobileapp.melvin.bmicalculator;

import android.app.*;
import android.content.*;
import android.os.*;
import android.view.*;
import android.widget.*;

public class BMI1 extends Activity {

String name,mass,height,bmi;

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

    //Get data from the first activity through intent
     name = getIntent().getStringExtra("Name");
     mass = getIntent().getStringExtra("Mass");
     height = getIntent().getStringExtra("Height");

     //convert mass and height to double and calculate BMI
     double m = Double.parseDouble(mass);
     double h = Double.parseDouble(height);
     bmi = Double.toString(calculateBMI(m, h));

    ((TextView) findViewById(R.id.b1_Label2)).setText(name);
    ((TextView) findViewById(R.id.b1_Label4)).setText(mass);
    ((TextView) findViewById(R.id.b1_Label6)).setText(height);
    ((TextView) findViewById(R.id.b1_Label8)).setText(bmi);


    Button backBtn = (Button) findViewById(R.id.b1Button_back);
    backBtn.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub
            Intent launcher = getIntent();
            launcher.putExtra("BMI", bmi);
            finish();
        }
    });
}

  private double calculateBMI(double toMass, double toHeight){
      double value;

      value = toMass/(toHeight * toHeight);
      return value;
  }

}

我知道没有传递任何值,因为当用户点击第一个Activity中的Display时,它会将值带到第三个Activity,其中textView应该显示例如“BMI:20.66”而是我得到“BMI:null”,我将如何修复此错误?

3 个答案:

答案 0 :(得分:2)

您不必总是使用Intent在活动之间发送数据。您使用其他Android存储选项,如Sqlite db,SharedPreferences。您还可以在SD卡上存储数据。看看Android存储选项 here

答案 1 :(得分:1)

对于不使用Intent在Activity之间发送数据,您可以使用SharedPreferences或SQlite db。

SharedPreferences示例:

// Create object of SharedPreferences.
 SharedPreferences sharedPref = PreferenceManager.getDefaultSharedPreferences(this);
 //now get Editor
 SharedPreferences.Editor editor = sharedPref.edit();
 //put your value
 editor.putString("userName", "stackoverlow");

 //commits your edits
 editor.commit();

使用putString(),putBoolean(),putInt(),putFloat(),putLong()可以保存所需的dtatype。

并获取数据:

SharedPreferences sharedPref = PreferenceManager.getDefaultSharedPreferences(this);
String userName = sharedPref.getString("userName", "Not Available");

答案 2 :(得分:1)

为了正确解决上述问题,android提供startActivityForResult基本上启动了一个活动,当它完成时你想要一个结果。

例如,以下是如何启动允许用户选择联系人的活动:

static final int PICK_CONTACT_REQUEST = 1;  // The request code
...
private void pickContact() {
    Intent pickContactIntent = new Intent(Intent.ACTION_PICK, Uri.parse("content://contacts"));
    pickContactIntent.setType(Phone.CONTENT_TYPE); // Show user only contacts w/ phone numbers
    startActivityForResult(pickContactIntent, PICK_CONTACT_REQUEST);
}

收到结果

当用户完成后续活动并返回时,系统将调用您活动的onActivityResult()方法。该方法包括三个参数:

  • 您传递给startActivityForResult()的请求代码。
  • 第二个活动指定的结果代码。如果操作成功,则为RESULT_OK;如果用户由于某种原因退出或操作失败,则为RESULT_CANCELED
  • 带有结果数据的Intent

例如,您可以通过以下方式处理" 选择联系人"意图:

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    // Check which request we're responding to
    if (requestCode == PICK_CONTACT_REQUEST) {
        // Make sure the request was successful
        if (resultCode == RESULT_OK) {
            // The user picked a contact.
            // The Intent's data Uri identifies which contact was selected.

            // Do something with the contact here (bigger example below)
        }
    }
}

您可以在本文here中看到startActivityForResult的完整示例。