放棄出源和路練波, 換了時間做 fyp, 有點成果, 加上老細心情好, “幾好wor, 有d 野睇” rather than “做快d 啦wor, 跟唔到個進度啦….” 迷霧中的中大, 建築物被大霧籠罩著, 人亦置身其中 轉數有點慢, 處理不到雜亂的訊息 知道朋友有一個好offer, 高興 ~~ 很好味, 好warm 的晚餐, 多謝你地 🙂 永遠記得今晚~~~ 仲有那份禮物…..真的很touching ~~~ 原來好多相我自己都冇copy 的 ~~ 都未上好繩就開始…..林建榮的做法……很失望…….. 為什麼要有比賽?! 什麼是體育精神 ? 為什麼勝利使人著迷 ……… 除左時間之外, 我唔相信世界是公平的, 但心裡還有一點渴望公義的存在 只可惜自己也沒有確切地追求這種信念. 以前或許太仁慈了, 今回站在懸崖邊, 找了幾個人協助自己推下去 其實我知道他們一定會作出這樣的選擇, 是一種明知’顧’問吧…….. 心裡掙扎多一陣, 是個人的操守重要d, 還是大部份人的祈望重要d………. 當回想起那幫人上次要求重賽的嘴臉, 我這個決定其實一點都不為過!!
http://www.j2mepolish.org/index.html J2ME Polish is suite of tools for creating “polished” J2ME applications. Each tool meets a definite need of J2ME developers: Build-tools with an integrated device-database, a powerful GUI, a framework for building localized applications, a game-engine, a logging framework and a collection of utilities.
原來 ChoiceGroup 係唔可以 implicit 的… 會return error ….
1 2 |
ChoiceGroup cg = new ChoiceGroup ("select location", Choice.IMPLICIT); //error !! |
change to following today:
1 2 3 4 5 6 7 |
private void displayListSelect() throws Exception { stringArray = new String[]{"KCR station", "U gym", "HCA", "UC", "NA"}; ImplicitList = new List("select location", List.IMPLICIT, stringArray, null); ImplicitList.addCommand(exitCommand); ImplicitList.setCommandListener(this); display.setCurrent(ImplicitList); } |