Вопрос

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