I need to set the Font Size of a ViewText on the onCreate/onResume method..
I think it must be this way:
public void onResume() {
Bundle LayoutData = new Bundle();
LayoutData.putInt(Control.Intents.EXTRA_MENU_ITEM_ID, MENU_ITEM_1);
**(line missing)**
showLayout(R.layout.text_view, LayoutData);
....
}
I am missing this: I can''t find the option for EXTRA_FONT_SIZE, like the EXTRA_TEXT for the intent.
How can I do that?
Thanks!