I have a LCDUI List Screen Contains Title and Image from Rss File

          myList.append(Rss.getTitle(),Rss.getImage());

I have one Detail Form :on which i am able to display publish date and one hyperlink form Rss File

         m_itemForm.append(new StringItem("Pub Date:",videoItem.getPubDate()));
         final String URL = videoItem.getLink();
        stringItem = new StringItem("Link: ", "Set", Item.HYPERLINK); 
        stringItem.setText(URL);
        m_itemForm.append(stringItem);

Now i want to decrease the font of a text on both the Screens(List and Form)?

有帮助吗?

解决方案

Unfortunately LCDUI List and Form do not allow an application to change the way they are presented. But you could use a CustomItem. See this article about it.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top