thi is my code which work fine in blackberry and get 3 responses which show in textview but wheni use this code in android is just show values only 1 times not 3 so how i use 1 text view to print 3 times result??
for (int x = 7; x <= xmlRespone.length - 1; x = x + 3) {
TextView lblTransactionDate =
(TextView) findViewById(R.id.lblTransactionDate);
lblTransactionDate.setText("Transaction
Date : "+ xmlRespone[x][1]);
lblTransactionDate.setTextColor(getResources().getColor
(R.color.text_color_slateblue));
TextView lblAmount = (TextView)
findViewById(R.id.lblAmount);
lblAmount.setText("Amount : " +
xmlRespone[x + 1][1]);