0

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!

4

1 回答 1

1

您将无法通过发送常量来做到这一点。如果要更改 TextView 的文本大小,则必须创建新布局或更改现有布局,然后再次调用 showLayout()。因此,如果您使用的是 XML 布局,那么您可以创建与第一个布局相同但字体大小不同的 TextView 的第二个布局,或者如果您在代码中创建 TextView 然后在 TextView 上调用 setTextSize() 然后调用 showLayout()。

于 2013-11-12T23:46:06.603 回答