これは、ブラックベリーで正常に動作し、textview に表示される 3 つの応答を取得するコードですが、Android でこのコードを使用すると、値が 3 回ではなく 1 回だけ表示されるため、1 つのテキスト ビューを使用して 3 回の結果を出力するにはどうすればよいですか??
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]);