0

我想在 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)
} 
4

1 回答 1

0

将 TextView 放在 ScrollView 内。但要小心,因为 ScrollView 只能容纳一个孩子......并且 TextView 将是 ScrollView 的孩子。使用 Eclipse 中的 xml 或图形布局功能执行此操作。

<ScrollView>

   TextView

</ScrollView>
于 2012-05-11T13:21:28.387 回答