lwuit-resource-editor

LWUIT ComboBox popup theming problem

僤鯓⒐⒋嵵緔 提交于 2019-12-24 15:56:38
问题 I want to customize the look of the ComboBox pop-up list in LWUIT. Nonetheless when I tried to change the ComboBox , ComboBoxFocus , ComboBoxItem , ComboBoxList , ComboBoxPopup components in LWUIT Theme Creator, nothing happened. The popup preview in Theme Creator still shows the pop-up in black text on white background. Am I missing something? How to change the theme of this pop-up? I am using LWUIT 1.4 回答1: Use the following styles in LWUIT resource edit, Unselected#ComboBoxItem#Color for

Additional jars from Resource Editor different from LWUIT 1.5 example apps

倖福魔咒の 提交于 2019-12-24 11:35:32
问题 I just realized that the Resource Editor still generates the old additional jars with creating the Netbeans project. For example: IO.jar , IO_SE.jar , UI.jar , UI_RIM_Touch.jar instead of LWUIT_MIDP.jar , MIDP_IO.jar , LWUIT_Blackberry_4_7_OrNewer.jar like used in the example apps in the LWUIT 1.5 download. Is this intentional? If yes, do I have to remove the ones auto generated and add the newer jars when working on my project in net-beans ? 回答1: The JAR's should generally be updated but

LWUIT TextArea question

て烟熏妆下的殇ゞ 提交于 2019-12-20 02:49:06
问题 Is there any way to write in a textArea without going to a LCDUI window? I want to edit my textArea in my LWUIT app but everytime I try to do this, the app send me to a LCDUI window. 回答1: To disable the LWUIT edit control trigger you can use the following code. textArea.setNativeTextboxTrigger(false); You need to implement the following code in the LWUIT TextArea source code static final String CLIENT_PROPERTY_FIRE_ACTION_TIMES = "FIRE-ACTION-TIMES"; static final String CLIENT_PROPERTY

LWUIT app doesn't start in a Blackberry device

孤街浪徒 提交于 2019-12-11 11:18:29
问题 I'm desperate. I'm developing an app in LWUIT, using the Resource editor. My project works fine in MIDP version, both in simulator and on devices. But when I find my issue when I start to test my app in Blackberry. The app works perfectly in the simulator but doesn't start in the devices. It doesn't give an error message, doesn't say anything. I try to change the UI_RIM.jar with the jars from LWUIT SVN or with the other jar generated from the Resource editor (UI_RIM_Touch.jar), but nothing

How to use Lwuit Resource Editor for Creating Theme or GUI?

痞子三分冷 提交于 2019-12-10 18:38:47
问题 I am just downloaded lwuit resource editor. I trying to create theme but i don't have idea how to create theme or gui. Can any one give me information how to use it? How to create gui or theme? And also i have one question how to use the created theme in netbean for j2me application. Please help me friends. 回答1: Lot of video's available on the Shai's blog. Here you can know about how to use latest LWUIT ResourceEdit. Current version of LWUIT ResourceEdit is little bit differnet from old

LWUIT TextArea question

前提是你 提交于 2019-12-01 23:55:57
Is there any way to write in a textArea without going to a LCDUI window? I want to edit my textArea in my LWUIT app but everytime I try to do this, the app send me to a LCDUI window. To disable the LWUIT edit control trigger you can use the following code. textArea.setNativeTextboxTrigger(false); You need to implement the following code in the LWUIT TextArea source code static final String CLIENT_PROPERTY_FIRE_ACTION_TIMES = "FIRE-ACTION-TIMES"; static final String CLIENT_PROPERTY_DEAFULT_TEXT = "DEFAULT-TEXT"; public void setNativeTextboxTrigger(boolean enable) {