我有一个 LinearLayout,我在其中动态地创建了一定数量的 TextView。
有时,TextView 的数量超出了屏幕的大小。
如何向此视图添加滚动条,以便用户可以上下滚动并查看所有 TextView?
这是我的代码的一部分:
LinearLayout layout = (LinearLayout) findViewById(R.id.layout);
for (int n = 0; n < (numberOfPlayers*(numberOfPlayers-1)/2); n++) {
TextView tv = new TextView(this);
tv.setText(gamelist[n][0] + " - " + gamelist[n][1]);
layout.addView(tv);
}