문제

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