0

EditText から取得した値を、ボタンをクリックするだけで 2 つのアクティビティに渡したいと思います。値を1つのアクティビティに渡してテキストビューに表示することができました。別のアクティビティにも同じことをしたいのですが、ボタンが1つしかないため、ケースの切り替えが正しい方法であるかどうかわかりません。

これは、最初のアクティビティのコードです。

public class ProfInfo1 extends Activity {

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.profinfo1);


    final EditText et0 = (EditText) findViewById (R.id.et_name);
    final EditText et1 = (EditText) findViewById (R.id.et_age);
    final EditText et2 = (EditText) findViewById (R.id.et_height);
    final EditText et3 = (EditText) findViewById (R.id.et_weight);

    Button back = (Button) findViewById(R.id.btn_back1);
    back.setOnClickListener(new OnClickListener() {

    public void onClick(View v) {
        Intent a = new Intent(ProfInfo1.this, WelcomeActivity.class);
        startActivity(a);
    }

    });

    Button next = (Button) findViewById(R.id.btn_next1);
    next.setOnClickListener(new OnClickListener() {

    @Override
    public void onClick(View v) {
        Intent intent=new Intent(ProfInfo1.this, ViewProf1.class);
        intent.putExtra("name", et0.getText().toString());
        intent.putExtra("age", et1.getText().toString());
        intent.putExtra("height", et2.getText().toString());
        intent.putExtra("weight", et3.getText().toString());
        startActivity(intent);
    }
});


}   
}

これは、値が表示される 2 番目のアクティビティです。

public class ViewProf1 extends Activity {
EditText age, height, weight;
String a, h, w;
Float age1, height1, weight1;
float bmi, cal;

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

    TextView nameView = (TextView) findViewById (R.id.view_name);
    nameView.setText("Hello " + getIntent().getExtras().getString("name") + ",");
    TextView ageView = (TextView) findViewById (R.id.view_age);
    ageView.setText("Age: " + getIntent().getExtras().getString("age"));
    TextView heightView = (TextView) findViewById (R.id.view_height);
    heightView.setText("Your current height is " + getIntent().getExtras().getString("height") + " m.");
    TextView weightView = (TextView) findViewById (R.id.view_weight);
    weightView.setText("Your current weight is " + getIntent().getExtras().getString("weight") + " kg.");

    a = getIntent().getExtras().getString("age");
    h = getIntent().getExtras().getString("height");
    w = getIntent().getExtras().getString("weight");

    age1 = Float.valueOf(a).floatValue();
    height1 = Float.valueOf(h).floatValue();
    weight1 = Float.valueOf(w).floatValue();

    //bmi calculation
    bmi = (float) (weight1/Math.pow(height1, 2));
    TextView showresult = (TextView) findViewById (R.id.view_bmi);
    showresult.setText("Your BMI is " + Float.valueOf(bmi) + ".");

    //cal intake calculation
    cal = (float) (((655 + (9.6 * weight1) + (1.8 * height1) - (4.7 * age1)) * 1.2) - 550);
    TextView showcal = (TextView) findViewById (R.id.view_cal);
    showcal.setText("Your ideal daily calories intake is " + Float.valueOf(cal) + ".");

    //next button
    Button next2 = (Button) findViewById (R.id.btn_next2);
    next2.setOnClickListener(new OnClickListener() {

    public void onClick(View v) {
        Intent a = new Intent(ViewProf1.this, FoodDiary.class);
        startActivity(a);
    }

    });

    //back button
    Button back2 = (Button) findViewById (R.id.btn_back2);
    back2.setOnClickListener(new OnClickListener() {

    public void onClick(View v) {
        Intent a = new Intent(ViewProf1.this, ProfInfo1.class);
        startActivity(a);
    }

    });


}

3 番目のアクティビティ:

public class CompareWeight extends Activity {

EditText weight;
String w;
Float weight1;

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

    TextView weightView = (TextView) findViewById (R.id.test);
    weightView.setText("Your previous weight is " + getIntent().getExtras().getString("weight") + " kg.");

    w = getIntent().getExtras().getString("weight");

    weight1 = Float.valueOf(w).floatValue();
}
}

重み値を 3 番目のアクティビティに渡したいだけです。

4

7 に答える 7

0

これは、Second Activity値を渡さずに Intent を呼び出しているためです。

2 番目のアクティビティで

意図を置き換える

    Intent a = new Intent(ViewProf1.this, FoodDiary.class);
    startActivity(a); 

これとともに

    Intent a = new Intent(ViewProf1.this, FoodDiary.class);
    a.putExtra("weight", weight1);
    startActivity(a);
于 2013-06-26T10:49:45.307 に答える
0

以下のように現在の目的で使用SharedPreferencesし、以下のようにデータを他のアクティビティに送信します。onPauseActivity

@Override
protected void onPause() 
{
  super.onPause(); 
  SharedPreferences preferences = getSharedPreferences("sharedPrefs", 0);
  SharedPreferences.Editor editor = preferences.edit();  
  editor.putString("SearchText",edt.getText().toString());
  editor.commit();

}

他の 2 つのアクティビティでは、以下のように共有設定からデータを取得します。

 SharedPreferences preferences = getSharedPreferences("sharedPrefs", 0);
 String edtText = preferences.getString("SearchText","");
于 2013-06-26T08:08:22.940 に答える
0

次のように、2 番目のアクティビティで文字列を取得することもできます。

Bundle extras = getIntent().getExtras();
        if(extras != null) {
            item = extras.getString("myitempassed");
        }
于 2013-06-26T08:47:30.860 に答える
0

共有プリファレンスで値を保存し、値を更新することができます。 o ボタンをクリックします。したがって、値は他のアクティビティで使用できます。

于 2013-06-26T08:05:32.933 に答える