1つのアクティビティから別のアクティビティへデータを転送してテキストビューに設定する方法はありますか?私は別のアクティビティにquestions_scoreを渡すのTextViewに設定したいあるアクティビティから別のアクティビティへデータを転送してテキストビューに設定するにはどうすればよいですか?
Intent intent=new Intent(v.getContext(),FinalResultActivity.class);
intent.putExtra("questions_count", questions_count);
intent.putExtra("questions_correct", questions_correct);
intent.putExtra("questions_score", questions_score);
intent.putExtra("questions_correct_list", questions_correct_list);
v.getContext().startActivity(intent);
:
は、これが私の意図です。
[Androidでのアクティビティ間でデータを渡すにはどうすればいいですか?](http://stackoverflow.com/questions/2091465/how-do-i-pass-data-between-activities-on-android) –
トン例は、それらのhttp://stackoverflow.com/questions/18146614/how-to-send-string-from-one-activity-to-another –