putExtra を使用してアクティビティ A から TextViews を送信し、アクティビティ B に TableRow に送信することに成功しました。問題なく SavePreferences を使用して、次回のビューを保持できます。私の問題は、次にいくつかのエントリをアクティビティ A に入れ、アクティビティ B に送信するときに、以前に保存したものを破棄しないアクティビティ B で新しい TableRow を作成するにはどうすればよいですか?
いくつかの編集の後、私は今このようになり、アクティビティ A から TableRow を生成します! ただし、行を保存したり、新しい行を作成したりすることはできません。
TableLayout01 = (TableLayout) findViewById(R.id.TableLayout01);
TableRow tableRow1 = new TableRow(this);
Intent in = getIntent();
if (in.getCharSequenceExtra("blah") != null) {
final TextView resultTextView = new TextView(this);
resultTextView.setText(in.getCharSequenceExtra("blah"));
tableRow1.addView(resultTextView);
Intent is = getIntent();
if (is.getCharSequenceExtra("no") != null) {
final TextView date = new TextView(this);
date.setText(is.getCharSequenceExtra("no"));
tableRow1.addView(date);
TableLayout01.addView(tableRow1, new TableLayout.LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT,1.0f));