我想在 TextView 中显示变量的值,例如 php 中的 echo ..
我会解释......我有一个名为“ contadorRegistros ”的变量,它存储应用程序的记录数......我想在 TextView 中显示它的值......
在php中我会这样做:
<php
echo "this is my variable $contadorRegistros"
?>
如何在安卓上做到这一点?
对不起我的英语......我是巴西人..
编辑:
我可以使用以下代码显示文本:
TextView t = (TextView) findViewById (R.id.tvCont);
t.setText ("Test");
但是当我通过我想要的变量切换“测试”时,它不起作用:
TextView t = (TextView) findViewById (R.id.tvCont);
t.setText (contadorRegistros);
我可以为工作做什么?=/