BigNude
60 messages 2008-09-13 |
if you want to build with specific approach you have to
- install manufactor SDK (Erikcsson, Motorola, Nokia, ig)
- create ant file
- and build with diferent SDK's
you san skip step 2 and do it manualy, but it would by pain in the humm somewhere
|
|
BigNude
60 messages 2008-09-13 |
for me this sounds nasty hack to go and display 100+ items on the phone... an u just filter them? for example allow navigate through items by alphabetic order, changing screens,
if you insist on having choises, you can allway split the list and that item NEXT after like 10-15, this is the best soliution in my mind. You wouldhave to worry then about the size of the memory.
|
|
BigNude
60 messages 2008-09-04 |
well, there are two types of scrollbar, either it is vertical or horisontal, these mean that eather up/down or left/right keys are actualy used for navigating in scroolbar , so you have the oposite paire to "jump out of" loop, as well that developer can assign 2jump out" shortcut.
Another way would be to introduce new widged of "round robin" type and let UI developer to controll jump outs.
the reason I bring this up is becouse of future proving KUIX, for example when touch screen will be de facto (quite soon) the most human convinion way to navigate through menus and screens will be browsing then like you do with news pappers, scrolling it with your finger.
without round robin it will immediatly get tendios and borring.
|
|
BigNude
60 messages 2008-09-03 |
well, I ll try to explain.
assume I have thread whitch will do some thing, dosnät matter what, but I want this thread to by blocking and by that I mean I want to start a pop up with gauge (progress bar) whicht would loop the gaugde while started thread is running. but then the thread is doen with calculations I want to remove thread change screen.
|
|
BigNude
60 messages 2008-09-03 |
ok, it would by real nice future to have on individual scroolbars, even if there are several of them on the screen :)
|
|
BigNude
60 messages 2008-09-03 |
I'm trying out the lates application and then closing app in and calling Dwayze.getDefault().destroyImpl();
result in following error:
java.lang.ArrayIndexOutOfBoundsException: 1 >= 0 Uncaught exception java/lang/IllegalArgumentException: KuixCanvas not initialized. at java.util.Vector.removeElementAt(Vector.java:511) at org.kalmeo.util.worker.Worker.run(Worker.java:148)
|
|
BigNude
60 messages 2008-09-02 |
it allways that hard question, how to keep simplicity and gain flexibility power.
But I think you are doing grate jobb! And have developed very good framework.
undfortenotly it's not well documented and it would be nice if you had snipets available, were user could both post and read how-to's
anyhow, keep upp good work!
|
|
BigNude
60 messages 2008-09-02 |
since you conver all children into listitem the one elegant way would by to assige type to the list item like checkbox, radiobutton, etc
thus depenting on the type select command would auto-magicly understand to check the box or radiobutton, while keeping hover on whole list item.
But to keep flexibility it would by conviniot to have a multiselectible="true" atribute whitch would release the focus to all children in the list item.
|
|
BigNude
60 messages 2008-09-01 |
the only soliution I found was to "pretend" checkbox and use listiteam
<list> <_renderer> <![CDATA[ <listitem onAction="selected(this.id)"> <_ID>@{id}</_ID> <picture> @{selected} </picture> <textarea> @{value_1} @{value_2} </textarea> </listitem> ]]> </_renderer> <_items>@{contact}</_items> </list>
then call toogleSelect() and change picture
|
|
BigNude
60 messages 2008-09-01 |
My questions how to set fokus directly on the "box"
the folowing xml then generating results that user have to press left key to go to the box itself and then press select
I would like to check box then user pressed down/select command.
<list> <_renderer> <![CDATA[ <checkbox onAction="selected(this.id)"><_ID>@{id}</_ID> @{value_1} @{value_2} </checkbox> ]]> </_renderer> <_items>@{contact}</_items> </list>
css:
listitem { gap: 5 0; }
listitem:hover { bg-color: #edf2f6; color: #6d9fcc; }
checkbox { bg-image: url(chk_off.png); bg-align: left; bg-repeat: 1 1; padding: 0 0 0 20; align: left; }
checkbox:selected { bg-image: url(chk_on.png); }
checkbox:hover { bg-image: url(o_chk_off.png); }
checkbox:hover:selected { bg-image: url(o_chk_on.png); }
|
|
BigNude
60 messages 2008-08-29 |
hi,
If I have scrollpane in xml file, but I would like to add come class to scrollbar , how do I do it?
Assigning some color property to a global scrollbar in css makes all look the same.
Thank you in advance!
|
|
BigNude
60 messages 2008-08-29 |
hi,
question is: is it possible to do round robbin and let the focus (selection) to go from the last item to first instead of neding to go backwords?
|
|
BigNude
60 messages 2008-08-29 |
hi!
how can kuix application be send to backround instead of destroying?
pauseApp() can be called from static method but then frame is loaded it is in static "mode"
|
|
BigNude
60 messages 2008-08-29 |
I have been looking at the progressbar pop up in demo, but I haven't managet to remove popup then thread dies.
Assum that I want a connection thread to show progressbar and then remove it then thread is done running.
Any sugestions how I should proced?
|
|
BigNude
60 messages 2008-08-29 |
Hi, I'm traying to create wait popup with a progres bar, so I create it and and start, and simultainiosly I create and start network thread, but the pop up is so slow that I get responce from server before it shows, how it comes?
|
|