I have just get the data from another activity using the following code,
Intent intent = getIntent();
Bundle data = intent.getExtras();
String LnAmt = data.getString("Amount");
String IntRate = data.getString("Rate");
String LnPrd = data.getString("Period");
I want to print these data in table using for loop. But i don't understand how to print. Please help me to print those value in table.