J2ME 文字滾動

2021-05-21 13:25:51 字數 1426 閱讀 7490

private

int tipstringpos = screen_width;

//當前字串左邊的位置

private

int tipstringspeed =

2; //字串移動速度

private

static

final

int tipstr_left =

5 -

5; //左邊消失繪製座標

private

static

final

int tipstr_right =

123 +

5; //右邊出現繪製座標

private

static

final

int font_height =

11;

//字型高度 font.getheight() 不準確

/*** @param graphics g - 畫刷

* @param string str - 所畫字串

* @param int height - 字串高度

* @param int rectx - 剪裁區頂點x座標

* @param int recty - 剪裁區頂點y座標

* @param int rectwidth - 剪裁區寬度

* @param int rectheight - 剪裁區高度 */

private

void drawtipstring

(graphics

g, string

str,

int height,

int rectx,

int recty,

int rectwidth,

int rectheight

)//裁減區

int oldclipx = g.

getclipx();

int oldclipy = g.

getclipy();

int oldclipwidth = g.

getclipwidth();

int oldclipheight = g.

getclipheight();

g.setclip

(rectx, recty, rectwidth, rectheight

);g.

drawstring

(str, tipstringpos, height - strheight /

2,graphics

. left |

graphics

. top

);

g. setclip

(oldclipx, oldclipy, oldclipwidth, oldclipheight

); }

j2me記憶體優化

out momory 一陣天旋地轉記憶體又溢位了。在手機上這種痛苦經常都有,套一句俗話在手機上用記憶體必須勒緊褲腰帶。雖然現在pc記憶體上g都不奇怪,可是在手機上卻只能以k來記,可能某位同志會馬上跳出來說也有上m的,記住中國還不富大多數手機都是低端手機。寫手機程式讓我彷彿回到了dos時代 自我安慰一...

j2me學習總結

j2me隨著最後乙個遊戲的完成,可以畫上乙個小句號了。做了幾個東西,簡單說一下。環境winxp eclipse netbeans 手機 nokia5230,s60v5平台 1 冷笑話 這個就是入門,執行之後可以看一些冷笑話,還有謎語之類的,用的是j2me自帶的ui 2.貪食蛇。就是貪食蛇,用了遊戲的...

J2ME實現的滾動條ScrollBar

只需要修改其中的count 變數,就可以調整整個選單中元素的數量。只要大家修改一下,就可以封裝成乙個滾動條scroolbar的控制項,以後使用的話,無非就是往這個螢幕裡新增控制項而已,很簡單。大家多提寶貴意見啊!看了要回帖啊 public void pointerreleased int x,int...