0

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)?

String
  • 3,660
  • 10
  • 43
  • 66

1 Answers1

1

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.

Telmo Pimentel Mota
  • 4,033
  • 16
  • 22
  • Can you send me the SampleCode, How to Change Font? – String Aug 14 '12 at 09:16
  • Please, first read the article I mentioned to understand how to create CustomItems http://developers.sun.com/mobility/midp/ttips/customitem/ "Defining a custom item is a matter of subclassing CustomItem and implementing five abstract methods" – Telmo Pimentel Mota Aug 14 '12 at 11:36