我在一个例程中有一堆代码,看起来有点像这样:
a.setContentView(R.layout.myLayout);
textview t1 = (TextView) a.findViewById(R.id.mylayout_t1);
t1.setText("Hello")
t1.setTypeface(font);
t1.setTextColor(colour);
t1.setTextSize(fontSize);
textview t2 = (TextView) a.findViewById(R.id.mylayout_t2);
t2.setText("Hello Again")
t2.setTypeface(font);
t2.setTextColor(colour);
t2.setTextSize(fontSize);
我遇到的问题是,在调用例程之前,布局是使用默认字体/大小/颜色的所有字体完成的,然后它们迅速更改为指定的值,这在视觉上不是很令人愉快。
是否可以在例程的开头添加某种命令来暂停任何布局,然后在例程结束时添加另一个命令来恢复?