[導入]OpenBaseMovil Nokia s60, 6670,e71,e61問題?
網站: JavaEye 作者: iwinyeah 鏈接:http://iwinyeah.javaeye.com/blog/168522 發表時間: 2008年03月06日
聲明:本文系JavaEye網站發布的原創博客文章,未經作者書面許可,嚴禁任何網站轉載本文,否則必將追究法律責任!
private void doShow() { // This delays minimze the chance that a Nokia 6670 or Nokia S60 3rd // edition device (might apply to other nokias) freez when showing a // view. The total delay of 600ms, with this distribution seems to // make it stable on E70 and E61. The delay is only applied to Nokia // phones at this moment if( displayable != null ) { final Display display = Application.getManager().getDisplay(); delay(); delay(); display.setCurrent( displayable ); if( !DeviceInfo.isNokia() && focusedItem != null ) { delay(); delay(); display.setCurrentItem( focusedItem ); } setCurrent( this ); delay(); delay(); } } private void delay() { if( delay ) { // Under some strange circumstances the Nokia 6670 crashes whitout this delay try { Thread.sleep( 100 ); } catch( InterruptedException e ) { } } }
是否的確是這樣?天啊,誰可以使用以上環境的設備給我測試一下我的手機理財JAccount呢?
本文的討論也很精彩,瀏覽討論>>
JavaEye推薦
文章來源:http://iwinyeah.javaeye.com/blog/168522