如何在setText()
方法中使用多個換行符?例如我寫了下面簡單的代碼和我希望看到在單獨的行中的每個數目如下:如何在setText()方法中使用多個換行符?
0
1
2
.
.
.
9
10
我從for(int i=0; i=10; i++)
使用,但是,當我運行下面的代碼作爲結果僅我看到10
值在textView
。
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
TextView textView = (TextView) findViewById(R.id.textView);
for(int i=0;i<=10;i++)
textView.setText(String.valueOf(i) + "\n"); // I see only the 10 value in the textView object.
}
}
看起來清爽多了 – sector11