Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试创建一个动态文本字段,该字段将在单个活动期间采用多个用户输入字段,在 java 文件中进行计算,然后在文本字段中的 SAME 活动中显示结果值。
有没有办法做到这一点?我刚刚发现我无法动态编辑 strings.xml,那么我可以使用任何结构来让我不断更改值吗?
谢谢大家。
这将非常简单:
String yourTextValue = "text"; TextView myTextView = (TextView) findViewById(R.id.textView1); myTextView.setText(yourTextValue);
每次您想更改 TextView 的值时,只需使用您的 String 值(无论它可能是什么)调用 setText()。