我想在TextView中滚动内容,这是设置要在TextView中显示的结果的代码:
do
{
y = m;
f = x / y;
m = (y + f) / 2;
str[i] = x + "\t " + y + "\t " + f + "\t " + m + "\t";
i++;
a = i;
} while (Math.abs(y - m) >= 0.00001 * y);
str4 = numfmt1.format(y);
for (int j = 0; j < a; j++){
ris.append(str[j] + "\n");//TextView that contains the string str
}
ris.append("La radice è: " + str4)
}
答案 0 :(得分:0)
将TextView放在ScrollView中。但要小心,因为ScrollView只能容纳一个子级....而TextView将是ScrollView的子级。使用eclipse中的xml或图形布局功能执行此操作。
<ScrollView>
TextView
</ScrollView>