我有一个设置变量的文本视图。此变量随时间变化。我希望此textview的文本也会自动更改。我该怎么办?是否可以添加类似计时器的东西,并且随着它的抽搐,文本将被更新?
答案 0 :(得分:1)
在OnClick()内部使用此项,如果要在按钮单击时添加...
LinearLayout child_layout = new LinearLayout(this);
child_layout.setOrientation(LinearLayout.HORIZONTAL);
TextView subject_name = new TextView(MainActivity.this);
textview.setText("add_new_text");
child_layout.addView(textview);
或
String text = "your_text";
textview.setText(text);