只需要修改其中的count 變數,就可以調整整個選單中元素的數量。
只要大家修改一下,就可以封裝成乙個滾動條scroolbar的控制項,以後使用的話,無非就是往這個螢幕裡新增控制項而已,很簡單。
大家多提寶貴意見啊!
看了要回帖啊@@@@@@@
public void pointerreleased(int x, int y)
public void pointerdragged(int x, int y)
isvibrate = true;
vendor = dragbox_y;
dragbox_y = y - dragbox_height/2;
dragbox_y = (dragbox_y - (screenheight - dragline_height) / 2) <= 0 ? (screenheight - dragline_height) / 2 - 1
: dragbox_y >= screenheight - (screenheight - dragline_height)
/ 2 - dragbox_height ? screenheight
- (screenheight - dragline_height) / 2 - dragbox_height
: y - dragbox_height/2;
bufimage.getheight();
float f1 = (bufimage.getheight() - screenheight);
float f2 = screenheight - 40 - dragbox_height;
float f = (f1/f2);
float i = ((dragbox_y - vendor)*f);
if(y<((screenheight - dragline_height)/2+(dragbox_height/2)))
else
if((y>=((screenheight - dragline_height)/2+dragbox_height/2))&&(y<=(screenheight -(screenheight - dragline_height)/2-dragbox_height/2) ))
else if((y>(screenheight -(screenheight - dragline_height)/2-dragbox_height/2)))}
}
j2me實現動態繪製滾動條,頁面滾動
j2me實現動態繪製滾動條,頁面滾動操作.1.計算相關引數 元素總個數 musiccount musicarray.length 滾動總高 螢幕高度 開始y座標 底部按鈕高 動態move top.scrollheight screenheight musicy getimageheight reso...
J2ME 文字滾動
private int tipstringpos screen width 當前字串左邊的位置 private int tipstringspeed 2 字串移動速度 private static final int tipstr left 5 5 左邊消失繪製座標 private static f...
關於J2ME進度條
關於進度條 最近在看 j2me 手機遊戲開發技術詳解 強鋒科技 龔劍,李振鵬 編著 書中關於進度條的方法是這樣的 進度條的實現時基於多執行緒的思想。乙個單獨的執行緒進行進度條的繪製工作,程式的主線程同步進行資源的載入,兩個執行緒同時執行在資源載入結束時,通知進度條執行緒結束。本程式使用構造物件的方式...