I have successfully been able to send TextViews from Activity A using putExtra and send to Activity B into a TableRow. I can use SavePreferences with no problem to keep the view for next time. My problem is the next time I put some entries into Activity A and send to Activity B how do I create a new TableRow in Activity B that doesn't destroy the previously saved one?
After some Editing I now have it like this and it produces the TableRow from Activity A! Except I still cant SAVE the row or make a New One one.
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));