HexActivity is a screen where ProcessActivity, ProductActivity, and HexSpecsActivity are all called from. Each of them are started with a startActivityForResult(). The user inputs data into each of these three activites and the data should be returned to the caller activity (HexActicity) for processing. I am having trouble with force closes when I try to save the data in ProcessActivity and ProdcutActivity; however, I do not get this error when using the save button in HexSpecsActivity. This is my first time using extras and it would be greatly appreciated if anyone could help make sense of this for me.

Caller Function

package hex.com.example;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;

public class HexActivity extends Activity implements OnClickListener
{
    Double prodCapacity, prodDensity, prodViscosity, prodK, prodCp;
    Double procCapacity, procDensity, procViscosity, procK, procCp;
    String prodCapacityStr, prodDensityStr, prodViscosityStr, prodKStr, prodCpStr = new String();
    String procCapacityStr, procDensityStr, procViscosityStr, procKStr, procCpStr = new String();
    String styleStr, procFluidStr, prodFluidStr = new String();
    String smallID, smallOD, largeID, largeOD = new String();
    String tubeID, tubeOD, triPitch, numTubes, shellID, shellOD, bafflePitch, baffleCut = new String();

    int ID1 = 0x100;
    int ID2 = 0x101;
    int ID3 = 0x102;

    public void onCreate(Bundle savedInstanceState) 
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        View productButton = findViewById(R.id.product_button);
        View processButton = findViewById(R.id.process_button);
        View calcTheoreticalButton = findViewById(R.id.calcTheo_button);
        View hexButton = findViewById(R.id.hex_button);

        productButton.setOnClickListener(this);
        processButton.setOnClickListener(this);
        calcTheoreticalButton.setOnClickListener(this);
        hexButton.setOnClickListener(this);
    }

    protected void onActivityResult(int requestCode, int resultCode, Intent data)
    {
        super.onActivityResult(requestCode, resultCode, data);

        switch(requestCode) 
        {
            case 0x100:
            {        
                if(resultCode == RESULT_OK)
                {   
                    Bundle extras = data.getExtras();

                    prodFluidStr = extras.getString("fluidValueProduct");

                    if(prodFluidStr.equals("Water"))
                    {
                        prodCapacityStr = extras.getString("vAProduct");
                        prodDensityStr = extras.getString("rhoAProduct");
                        prodViscosityStr = extras.getString("muAProduct");
                        prodKStr = extras.getString("kAProduct");
                        prodCpStr = extras.getString("cpAProduct");
                    }
                    else
                        if(prodFluidStr.equals("Propylene Glycol"))
                        {
                            prodCapacityStr = extras.getString("vPProduct");
                            prodDensityStr = extras.getString("rhoPProduct");
                            prodViscosityStr = extras.getString("muPProduct");
                            prodKStr = extras.getString("kPProduct");
                            prodCpStr = extras.getString("cpPProduct");
                        }
                        else
                            if(prodFluidStr.equals("Other"))
                            {
                                prodCapacityStr = extras.getString("vIProduct");
                                prodDensityStr = extras.getString("rhoIProduct");
                                prodViscosityStr = extras.getString("muIProduct");
                                prodKStr = extras.getString("kIProduct");
                                prodCpStr = extras.getString("cpIProduct");
                            }

                }
             }

            case 0x101:
            {
                if(resultCode == RESULT_OK)
                {                   
                    procFluidStr = data.getStringExtra("fluidValueProcess");

                    if(procFluidStr.equals("Water"))
                    {
                        procCapacityStr = data.getStringExtra("vAProcess");
                        procDensityStr = data.getStringExtra("rhoAProcess");
                        procViscosityStr = data.getStringExtra("muAProcess");
                        procKStr = data.getStringExtra("kAProcess");
                        procCpStr = data.getStringExtra("cpAProcess");
                    }
                    else 
                        if(procFluidStr.equals("Proplyene Glycol"))
                        {
                            procCapacityStr = data.getStringExtra("vPProcess");
                            procDensityStr = data.getStringExtra("rhoPProcess");
                            procViscosityStr = data.getStringExtra("muPProcess");
                            procKStr = data.getStringExtra("kPProcess");
                            procCpStr = data.getStringExtra("cpPProcess");
                        }
                        else
                            if(procFluidStr.equals("Other"))
                            {
                                procCapacityStr = data.getStringExtra("vIProcess");
                                procDensityStr = data.getStringExtra("rhoIProcess");
                                procViscosityStr = data.getStringExtra("muIProcess");
                                procKStr = data.getStringExtra("kIProcess");
                                procCpStr = data.getStringExtra("cpIProcess");
                            }

                }               
            }

            case 0x102:
            {
                if(resultCode == RESULT_OK)
                {
                    Bundle extras = data.getExtras();

                    styleStr = extras.getString("style");

                    if(styleStr.equals("Double Pipe"))
                    {
                        smallID = extras.getString("smallID");
                        smallOD = extras.getString("smallOD");


                largeID = extras.getString("largeID");
                    largeOD = extras.getString("largeOD");
                }
                else 
                    if(styleStr.equals("Shell and Tube"))
                    {
                        tubeID = extras.getString("tubeID");
                        tubeOD = extras.getString("tubeOD");
                        triPitch = extras.getString("triPitch");
                        numTubes = extras.getString("numTubes");
                        shellID = extras.getString("shellID");
                        shellOD = extras.getString("shellOD");
                        bafflePitch = extras.getString("bafflePitch");
                        baffleCut = extras.getString("baffleCut");
                    }
            }
        }
    }
}

public void onClick(View v)
{
    switch(v.getId())
    {
        case R.id.product_button:
            Intent product = new Intent(this, ProductActivity.class);
            startActivityForResult(product, ID1);
            break;
        case R.id.process_button:
            Intent process = new Intent(this, ProcessActivity.class);
            startActivityForResult(process, ID2);
            break;
        case R.id.calcTheo_button: 
            Intent calcTheo = new Intent(this, CalcTheoActivity.class);
            startActivity(calcTheo);
            break;
        case R.id.hex_button:
            Intent hexSpecs = new Intent(this, HexSpecsActivity.class);
            startActivityForResult(hexSpecs, ID3);
            break;  
    }
}

}

One of the Called Functions

    package hex.com.example;

import android.app.Activity;
import android.content.Intent;
import android.content.res.Resources;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.EditText;
import android.widget.Spinner;
import android.widget.Button;
import android.widget.AdapterView.OnItemSelectedListener;

public class ProcessActivity extends Activity
{
    EditText capacity, density, viscosity, cp, k;
    int posVal;
    double tempVal;

    Button menuButton, saveButton;
    String fluidValue, tempValue = new String();
    String[] viscosityWArray, densityWArray, cpWArray, kWArray = new String[18];
    String[] viscosityPArray, densityPArray, cpPArray, kPArray = new String[18];


    public void onCreate(Bundle savedInstances)
    {
        super.onCreate(savedInstances);
        setContentView(R.layout.process_menu);

        //Grabs all arrays from array resource file
        Resources res = getResources();
        viscosityWArray = res.getStringArray(R.array.water_viscosity);
        densityWArray = res.getStringArray(R.array.water_density);
        cpWArray = res.getStringArray(R.array.water_cp);
        kWArray = res.getStringArray(R.array.water_k);

        //Instantiates all input boxes and buttons 
        menuButton = (Button) findViewById(R.id.menu_button);
        saveButton = (Button) findViewById(R.id.save_button);
        capacity = (EditText)findViewById(R.id.input1);
        density = (EditText)findViewById(R.id.input2);
        viscosity = (EditText)findViewById(R.id.input3);
        cp = (EditText)findViewById(R.id.input4);
        k = (EditText)findViewById(R.id.input5);

        //Sets hint for all of the editText
        capacity.setHint("GPM");
        density.setHint("lb/cu.ft.");
        viscosity.setHint("cPs");
        cp.setHint("kJ/kg*K");
        k.setHint("Btu/ft*h*F");

        //Listens for menu button to be pressed
        menuButton.setOnClickListener(new OnClickListener()
        {
            public void onClick(View v)
            {
                //Ends activity
                finish();
            }
        });

        //Instantiates and assigns fluid selection drop down box
        final Spinner fluidSpinner = (Spinner) findViewById(R.id.spinner1);
        ArrayAdapter<CharSequence> adapter1 = ArrayAdapter.createFromResource(this, R.array.material, android.R.layout.simple_spinner_item);
        adapter1.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
        fluidSpinner.setAdapter(adapter1); 

        //Instantiates and assigns temperature selection drop down box
        final Spinner tempSpinner = (Spinner) findViewById(R.id.spinner2);
        ArrayAdapter<CharSequence> adapter2 = ArrayAdapter.createFromResource(this, R.array.temp, android.R.layout.simple_spinner_item);
        adapter2.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
        tempSpinner.setAdapter(adapter2); 

        //Listens for fluid selection drop down box to be selected
        fluidSpinner.setOnItemSelectedListener(new OnItemSelectedListener()
        {
            public void onItemSelected(AdapterView<?> parent, View view, int pos, long i) 
            {
                fluidValue = fluidSpinner.getSelectedItem().toString();
            }

            public void onNothingSelected(AdapterView<?> parent) 
            {   
                fluidValue = "Water";
            } 
        });

        //Listens for temperature selection drop down box to be selected
        tempSpinner.setOnItemSelectedListener(new OnItemSelectedListener()
        {
            public void onItemSelected(AdapterView<?> parent, View view, int pos, long i) 
            {
                tempValue = tempSpinner.getSelectedItem().toString();
                tempVal = Double.parseDouble(tempValue);
                posVal = pos;
            }

            public void onNothingSelected(AdapterView<?> parent) 
            {
                tempVal = 32;
                posVal = 0;
            }
        });

      //Listens for save button to be pressed
      saveButton.setOnClickListener(new OnClickListener()
      {
          public void onClick(View v)
          {     
              Intent save = new Intent();

              fluidValue = fluidSpinner.getSelectedItem().toString();
              save.putExtra("fluidValueProcess", fluidValue);             
              save.putExtra("vProcess", capacity.getText().toString());

              if(fluidValue.equals("Water"))
              {
                  save.putExtra("rhoAProcess", densityWArray[posVal]);
                  save.putExtra("muAProcess", viscosityWArray[posVal]);
                  save.putExtra("cpAProcess", cpWArray[posVal]);
                  save.putExtra("kAProcess", kWArray[posVal]);
              }
              else
                  if(fluidValue.equals("Propylene Glycol"))
                  {

                  }
                  else
                      if(fluidValue.equals("Other"))
                      {
                          save.putExtra("rhoIProcess", density.getText().toString());
                          save.putExtra("muIProcess", viscosity.getText().toString());
                          save.putExtra("cpIProcess", cp.getText().toString());
                          save.putExtra("kIProcess", k.getText().toString());
                      }

              setResult(RESULT_OK, save);
              finish();
            }
        });
    }

    //Sets up an options menu when the android menu button is selected
    public boolean onCreateOptionsMenu(Menu menu) 
    {
        super.onCreateOptionsMenu(menu);
        menu.add(0,0,2,"Calculate Theoretical");
        menu.add(0,1,3,"Heat Exchanger Specs");
        menu.add(0,2,4,"Product Fluid Specs");
        menu.add(0,3,5,"Process Fluid Specs");
        menu.add(0,4,1,"Menu");
        return true;
    }

    //Listens for which options menu button is selected
    public boolean onOptionsItemSelected(MenuItem item)
    {
        super.onOptionsItemSelected(item);

        switch (item.getItemId())
        {
        case 0:
            finish();
            Intent calcTheo = new Intent(this, CalcTheoActivity.class);
            startActivity(calcTheo);
            break;
        case 1:
            finish();
            Intent hexSpecs = new Intent(this, HexSpecsActivity.class);
            startActivity(hexSpecs);
            break;
        case 2: 
            finish();
            Intent product = new Intent(this, ProductActivity.class);
            startActivity(product);
            break;
        case 3:
            finish();
            Intent process = new Intent(this, ProcessActivity.class);
            startActivity(process);
            break;
        case 4:
            finish();
            break;
        }
        return false;
    }

    //Allows the options menu to create itself upon the activity being called
    public boolean onPrepareOptionsMenu(Menu menu)
    {
        return super.onPrepareOptionsMenu(menu);
    }
}
link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.