ルーチンには、次のようなコードがたくさんあります。
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);
私が抱えている問題は、ルーチンが呼び出される前に、すべてのフォントがデフォルトのフォント/サイズ/色でレイアウトされ、指定された値にすばやく変更されることです。
ルーチンの先頭に追加してレイアウトを一時停止し、ルーチンの最後に再開する別のコマンドを追加できるコマンドはありますか?