`

lwuit ---一些细节疑难杂症整理笔记

阅读更多

转载:http://www.cnblogs.com/datong/archive/2009/07/22/1528325.html


1、textArea 显示文本内容,在部分手机上无法显示全部内容,每一行的最后几个字被挡住
琢磨了很久终于找了出来,解决方案如下:
  
TextArea txtContent = new TextArea(strContent, 12, 24);
  //添加这一句即可
  txtContent.setWidestChar('一');
 
2、若要对文本框中的内容设置补丁:
txtContent.getStyle().setPadding(Component.RIGHT, 10);
 
内容往右10像素。
3、如果list上不想要显示文字多余时的省略号
name.setEndsWith3Points(false);
 
4、重写Dialog要让标题与Form的样式一致
dialog.show(100, 100,100,100, true);

 
5、声音播放

try {
     InputStream is = getClass().getResourceAsStream(
       "/res/NewMailSound.wav");
     Player player = Manager.createPlayer(is, "audio/x-wav");
     player.start();
    } catch (Exception e) {
     e.printStackTrace();
    }

  
6、使得TextField也能够在触屏手机上点击时出现输入编辑
解决方法:
在TextField源码上 加上editString();函数:
public void pointerReleased(int x, int y) {

        // unlike text area the text field supports shifting the cursor with the touch screen
     editString();
        String text = getText();
        int textLength = text.length();
        int position = 0;
        Font f = getStyle().getFont();
        x -= getAbsoluteX();
        for(int iter = 0 ; iter < textLength ; iter++) {
            int width = f.substringWidth(text, 0, iter);
            if(x > width) {
                position = iter;
            } else {
                break;
            }
        }
        if(position == textLength - 1) {
            if(f.stringWidth(text) < x) {
                position = textLength;
            }
        }
        setCursorPosition(position);
        repaint();
    }

  
或者官方的解决方法:http://forums.java.net/jive/thread.jspa?threadID=52716
7、震动

 public void MakeVibrate() {
  new Thread() {
   public void run() {
    try {
     Display.getInstance().vibrate(2000);
    } catch (Exception e) {
     e.printStackTrace();
    }
   }
  }.start();
 }

  
8、导致内存激增的原因(可以用自动模拟器的内存检测器进行监测C:\WTK2.5.2\bin\prefs.exe将你要的设置勾选)
而lwuit里面的源码有两句是会导致内存一直占用,一个是TextField中的这段代码

  // public boolean animate() {
    // boolean ani = super.animate();
    // if (hasFocus()) {
    // long currentTime = System.currentTimeMillis();
    // if (drawCursor) {
    // if ((currentTime - cursorBlinkTime) > blinkOnTime) {
    // cursorBlinkTime = currentTime;
    // drawCursor = false;
    // return true;
    // }
    // } else {
    // if ((currentTime - cursorBlinkTime) > blinkOffTime) {
    // cursorBlinkTime = currentTime;
    // drawCursor = true;
    // return true;
    // }
    // }
    // if (pressedAndNotReleased) {
    // if (currentTime - pressTime >= getLongClickDuration()) {
    // longClick(pressedKeyCode);
    // }
    // } else {
    // if (pendingCommit && currentTime - releaseTime > commitTimeout) {
    // commitChange();
    // }
    // }
    // } else {
    // drawCursor = false;
    // }
    // return ani;
    // }
 
    // public boolean animate() {
    
// boolean ani = super.animate();
    
// if (hasFocus()) {
    
// long currentTime = System.currentTimeMillis();
    
// if (drawCursor) {
    
// if ((currentTime - cursorBlinkTime) > blinkOnTime) {
    
// cursorBlinkTime = currentTime;
    
// drawCursor = false;
    
// return true;
    
// }
    
// } else {
    
// if ((currentTime - cursorBlinkTime) > blinkOffTime) {
    
// cursorBlinkTime = currentTime;
    
// drawCursor = true;
    
// return true;
    
// }
    
// }
    
// if (pressedAndNotReleased) {
    
// if (currentTime - pressTime >= getLongClickDuration()) {
    
// longClick(pressedKeyCode);
    
// }
    
// } else {
    
// if (pendingCommit && currentTime - releaseTime > commitTimeout) {
    
// commitChange();
    
// }
    
// }
    
// } else {
    
// drawCursor = false;
    
// }
    
// return ani;
    
// }

一个是Display

lwuitGraphics.setGraphics(impl.getNativeGraphics());

 
这两个暂时还没有仔细去研究,但是确实吃内存的所在。
还有就是要巧用System.gc();进行内存回收,这样就会尽量的减少内存溢出的情况。
9、滚动条拖拽方向与内容显示相反,component中的代码修改如下

 public void pointerDragged(int x, int y) {
        if (isScrollable() && isSmoothScrolling()) {
            int axisValue;
            if (isScrollableY()) {
                axisValue = y;
            } else {
                axisValue = x;
            }

            if (!dragActivated) {
                dragActivated = true;
                beforeLastScrollY = axisValue;
                lastScrollY = axisValue;
                getComponentForm().setDraggedComponent(this);
            }
            //save time and locations to create velocity when the 
            //pointer is released
            long currentTime = System.currentTimeMillis();
            if (currentTime != lastTime[(pLastDragged + lastTime.length + 1) % lastTime.length]) {
                lastTime[pLastDragged] = System.currentTimeMillis();
                lastDragged[pLastDragged] = axisValue;
                pLastDragged = (++pLastDragged) % lastTime.length;
            }

            beforeLastScrollY = lastScrollY;
            lastScrollY = axisValue;

            // we drag inversly to get a feel of grabbing a physical screen
            // and pulling it in the reverse direction of the drag
            if (isScrollableY()) {
                int scroll = getScrollY() - (beforeLastScrollY - axisValue);
                if (scroll >= 0 && scroll < getPreferredH() - getHeight()) {
                    setScrollY(scroll);
                }
            } else {
                int scroll = getScrollX() - (beforeLastScrollY - axisValue);
                if (scroll >= 0 && scroll < getPreferredW() - getWidth()) {
                    setScrollX(scroll);
                }
            }
        } else {
            //try to find a scrollable element until you reach the Form
            Component parent = getParent();
            if (!(parent instanceof Form)) {
                parent.pointerDragged(x, y);
            }
        }
    }

 

10、开启wtk模拟器的触摸屏功能
打开\wtklib\devices\DefaultColorPhone目录下的DefaultColorPhone.properties文件(最好先安装一个UltraEdit之类的文本编辑器)。
然后找到touch_screen选项,修改为touch_screen=true

11、设置模拟器权限,以免开发过程中弹出烦人的提示
打开wtk模拟器。
选择Edit->Preferences->Security
然后将Security domain的选项设置为maximum。

12、内存和性能监视器
Edit->Preferences->Memory Monitor
Edit->Preferences->Profiler

13、出现安装后无法打开问题
有些Nokia手机会出现安装后无法打开,原因是安装包名称包含中文导致。

 




 

分享到:
评论
1 楼 superliu8 2010-04-14  
以后的手机发展趋势 是触屏么?

相关推荐

    lwuit-incubator-专为blackberry移植的版本

    lwuit-incubator,含专为blackberry移植的版本,在\lwuit-incubator\trunk\awandi\bb中,里面有DOC和源码,不过它把4.2-4.7版本放在一起了,应用的时候需要根据自己项目实际进行裁剪和修改。

    lwuit-blackberry上移植的版本

    Lwuit在blackberry上的移植版本,使用subversion签下来的,我把这个从lwuit-incubator中提取出来的,里面有DOC和源码,不过它把4.2-4.7版本放在一起了,应用的时候需要根据自己项目实际进行裁剪和修改。

    Lwuit-九宫格源码

    【Lwuit-九宫格源码】是一个专注于Java ME(J2ME)平台的UI设计项目,利用 Lightweight User Interface Toolkit(LWUIT)库来创建一个九宫格的图形用户界面。LWUIT 是一个开源的轻量级UI框架,它提供了丰富的组件和...

    lwuit-1.4 源代码

    《深入解析LWUIT 1.4源代码:构建J2ME中的轻量级用户界面》 LWUIT( Lightweight User Interface Toolkit)是Java 2 Micro Edition (J2ME) 平台上的一种轻量级用户界面框架,它为开发者提供了一套类似于Swing的API...

    LWUIT1-2-1学习文档(中文版).pdf

    ### LWUIT1-2-1学习文档知识点梳理 #### 一、LWUIT简介 - **定义**: LWUIT(LightWeight User Interface Toolkits)是一种轻量级用户界面工具包,专为小型设备(如手机、机顶盒)设计,旨在帮助开发者创建图形用户...

    LWUIT1.2-src

    LWUIT( Lightweight UI Toolkit)是Sun Microsystems(后被Oracle收购)开发的一个开源用户界面库,主要用于J2ME(Java 2 Micro Edition)平台。它为移动设备提供了丰富的图形用户界面组件,使得开发者能够创建出...

    最新LWUIT_1_5

    LWUIT 1.5的发布意味着它可能解决了旧版本中的一些已知问题,并添加了对当时最新手机特性和技术的支持。 LWUIT的核心特性包括: 1. **组件库**:LWUIT提供了丰富的组件集合,如按钮、文本框、标签、列表、表格等,...

    LWUIT.jar LWUIT.jar

    LWUIT.jarLWUIT.jarLWUIT.jarLWUIT.jarLWUIT.jarLWUIT.jar

    LWUIT 入门资料个人整理

    ### LWUIT 入门知识点详解 #### 一、LWUIT 概览 LWUIT(Light Weight UI Toolkit)是一款轻量级的图形用户界面工具包,专为资源有限的移动设备设计,如手机和PDA。它提供了一系列丰富的用户界面组件和功能,帮助...

    J2me 轻量级UI控件-lwuit1.2.1

    尽管LWUIT被设计为轻量级,但如描述中提到的,它的大小仍然接近400KB,这在一些内存受限的设备上可能显得有些庞大。不过,它带来的动态效果和丰富的视觉表现力确实提升了J2ME应用的用户体验。 LWUIT的主要特点包括...

    Lwuit入门程序测试一下Demo

    **LWUIT(Lightweight User Interface Toolkit)**是Java ME平台上的一个开源用户界面库,主要用于创建具有丰富图形效果和交互性的移动应用。这个库在早期的Java ME开发中非常流行,因为它允许开发者构建出与桌面...

    lwuit 开发文档

    这些细节在LWUIT开发文档中都有详细的描述和说明。 由于文档部分是通过OCR扫描的,可能存在识别错误或遗漏,但根据上下文可以理解为开发者在创建LWUIT主题商店时需要设计用户友好的界面,并通过网络请求从服务器...

    LWUIT1.3code.rar_LWUIT

    - **Layout管理器**:LWUIT提供了一些布局管理器,如FlowLayout、BoxLayout和GridBagLayout等,它们负责组件在容器中的排列和对齐。 - **Form类**:作为LWUIT中的主要容器,Form通常用于承载多个组件和布局,是构建...

    JAVA ME富客户端开发-LWUIT开发文档

    【JAVA ME富客户端开发-LWUIT开发文档】 LWUIT(Lightweight User Interface Toolkit)是针对JAVA ME平台设计的一个轻量级用户界面开发框架。它由SUN公司在2008年5月发布,旨在解决JAVA ME环境中界面设计的复杂性...

    lwuit实例 lwuit j2me 界面

    描述中提到的“最新开源 j2me 资源代码”可能是指包含LWUIT库的最新版本或者是一些开发者社区共享的示例代码库,这些资源有助于开发者理解和学习如何在Eclipse这样的集成开发环境中使用LWUIT。Eclipse是一个广泛使用...

    lwuit.rar_LWUIT_java 项目_手机动态

    LWUIT( Lightweight UI Toolkit )是Java ME(Micro Edition)平台上的一款开源用户界面库,专为移动设备设计,提供了一套丰富的组件和强大的动画效果,以创建吸引人的、交互性强的用户界面。这个名为“lwuit.rar_...

    LWUIT截止2012年1月3日官网最新代码、中英文开发文档合集

    "6-lwuit-324305-zhs.pdf"可能是一个中文版的LWUIT教程或者指南,对于中国开发者来说尤其有用,因为它提供了中文解释,便于理解和实践。中文文档通常会详细解释LWUIT的关键概念,如布局管理器、样式表的应用、图形...

    lwuit_demo_src.rar_DEMO_J2ME lwuit de_LWUIT_lwuit demo

    这个"lwuit_demo_src.rar_DEMO_J2ME lwuit de_LWUIT_lwuit demo"压缩包包含的是LWUIT库的示例源代码,对于学习和理解LWUIT的使用方法非常有帮助。 LWUIT的主要目标是提供一套轻量级的UI组件,使得开发者能够在资源...

    LWUIT最新源代码

    Sun发布了LWUIT(Light-Weight UI Toolkit)的源代码。项目主页访问:LWUIT。 The Lightweight UI Toolkit (LWUIT) 是一个轻量级JavaME UI工具包。LWUIT类似Swing 的MVC架构, 支持多种布局(Layouts), 皮肤更换, ...

Global site tag (gtag.js) - Google Analytics