Dict.CN 在線詞典, 英語學習, 在線翻譯

          都市淘沙者

          荔枝FM Everyone can be host

          統計

          留言簿(23)

          積分與排名

          優秀學習網站

          友情連接

          閱讀排行榜

          評論排行榜

          GWT也能做iPhone應用

          GWT is Flexible — an iPhone Demo

          On May 25, 2009, in Languages, by Clay Lenhart

          GWT is a very flexible environment that allows you to write a web application in Java and compile it to Javascript -- even for the iPhone.

          A number of people have fears with GWT, for instance

          • (not true) GWT isn't flexible which will lead developers down a dead-end path.
          • (not true) GWT is ugly, and can't be used to make "gucci" UIs.

          This post will show that these are just myths.

          Demos

          First, lets take a look at the demo.  Below is a re-write of Apple's "Simple Browser" demo using GWT.  You can find the original demo here: https://developer.apple.com/webapps/docs/referencelibrary/index-date.html (search on the page for "simple browser").

          You can try the GWT version of the demo on the iPhone: live GWT demo, and the source code which includes the source control history.

          or compare it to the original Apple demo

          For those who don't have an iPhone, here is a quick video of the demo written in GWT:

          GWT is Flexible

          The iPhone provides several unique challenges to GWT:

          • iPhone has specific events like orientation change, touch, and transition end events
          • iPhone has specific animation features to slide from one "page" to the next (Page, in the demo, is conceptual.  Once the app is loaded, it never goes to another HTML page.)
          • The built-in GWT controls prefer tags like <div> and <table>.  We want to use other HTML tags such as <ul> and <li> in the iPhone

          GWT manages events, with good reason. By managing events, GWT prevents a whole class of memory leaks. So implementing events that GWT is unaware of is not ideal. The demo handles this by either firing event on objects that will always exist in the application, or adding or remove events when the control is added or removed from the DOM using the onLoad() and onUnload() methods.

          The GWT demo wires up the iPhone specific events by calling native JSNI method. In native methods you write any Javascript you want, but you have the added risk of memory leaks. This method wires up the screen orientation change event:

           private native void registerOrientationChangedHandler(
          OrientationChangedDomEvent handler) /*-{
          var callback = function(){
          handler.@net.lenharts.gwt.sampleiphoneapp.client.model.Screen$OrientationChangedDomEvent::onOrientationChanged()();
          }

          $wnd.addEventListener("orientationchange", callback, false);
          }-*/;

          When the screen orientation changes, the handler.@net.lenharts.gwt.sampleiphoneapp.client.model.Screen$OrientationChangedDomEvent::onOrientationChanged()() method is called, which is a special GWT notation allow you to call Java methods from Javascript. When the code is compiled to Javascript, this will be replaced with the actual compiled Javascript function.

          Animations on the iPhone are surprising easy. In fact animations are included in the CSS 3 specification soon to be released. If you have the Google Chrome 2 browser, you can try out the animations in the link.

          To use these animations the pseudo code is

          1. Set the content of a element.
          2. Set the element to a CSS class that disables animations
          3. Set the element to another CSS class that will position the element at the beginning position of the animation (give the element two classes)
          4. Schedule a DeferredCommand
          5. In the DeferredCommand, remove the CSS classes set above and set the element to a CSS class that enables animations.
          6. Then set the element to a CSS class to position the element at the destination position. (again keeping the animation class).
          7. When the transition ends (using the transitionend event), disable animations by removing the CSS class that enables animations and replace it with the CSS class to disable animations.

          GWT allows you to create any type of element within the <body> tag. The default set of widgets, unfortunately, do not give you every tag, so you have to write your own class. Luckily you only need two classes to create any element: one class for elements that contain text, and one class for elements that contain other elements.

          Here is the class that contains other elements:

          package net.lenharts.gwt.sampleiphoneapp.client.util;

          import com.google.gwt.user.client.DOM;
          import com.google.gwt.user.client.ui.*;

          public class GenericContainerTag extends ComplexPanel {
          public GenericContainerTag(String tagName) {
          setElement(DOM.createElement(tagName));
          }

          /**
          * Adds a new child widget to the panel.
          *
          * @param w
          * the widget to be added
          */
          @Override
          public void add(Widget w) {
          add(w, getElement());
          }

          /**
          * Inserts a widget before the specified index.
          *
          * @param w
          * the widget to be inserted
          * @param beforeIndex
          * the index before which it will be inserted
          * @throws IndexOutOfBoundsException
          * if <code>beforeIndex</code> is out of range
          */
          public void insert(Widget w, int beforeIndex) {
          insert(w, getElement(), beforeIndex, true);
          }
          }

          To create the element, you pass in the name of the tag. For instance, if you want to create a <ul> tag, you create it like so

          GenericContainerTag ul = new GenericContainerTag("ul");

          The class for elements that contain text is a bit more complicated, especially since we're enabling iPhone specific events here. If you were to take out the event code, you'd find this to be much smaller. Plus it tries to wire touch events for the iPhone, and click events for all other browsers. For now, don't worry about the details, let's just skip down to how to create it.

          package net.lenharts.gwt.sampleiphoneapp.client.util;

          //based on Label.java source code that comes with GWT

          import com.google.gwt.user.client.ui.*;
          import com.google.gwt.dom.client.Document;
          import com.google.gwt.dom.client.Element;
          import com.google.gwt.event.dom.client.ClickEvent;
          import com.google.gwt.event.dom.client.ClickHandler;
          import com.google.gwt.event.shared.GwtEvent;
          import com.google.gwt.event.shared.HandlerRegistration;

          public class GenericTextTag<E> extends Widget implements HasText {

          private boolean mMovedAfterTouch = false;
          private E mAttachedInfo;

          private boolean mWantsEvents = false;
          private boolean mEventsWiredUp = false;
          HandlerRegistration mHandlerRegistration;

          public GenericTextTag(String tagName) {
          setElement(Document.get().createElement(tagName));
          }

          @Override
          protected void onLoad() {
          if (mWantsEvents) {
          wireUpEvents();
          }
          }

          private void wireUpEvents() {
          if (!mEventsWiredUp && this.isAttached()) {
          if (hasTouchEvent(this.getElement())) {
          registerDomTouchEvents();
          } else {
          // used for debugging:
          mHandlerRegistration = this.addDomHandler(new ClickHandler() {
          @Override
          public void onClick(ClickEvent event) {
          event.preventDefault();
          fireTouchClick();
          }
          }, ClickEvent.getType());
          }
          mEventsWiredUp = true;
          }
          }

          private void wireDownEvents() {
          if (mEventsWiredUp) {
          if (hasTouchEvent(this.getElement())) {
          unRegisterDomTouchEvents();
          } else {
          mHandlerRegistration.removeHandler();
          }
          }
          mEventsWiredUp = false;
          }

          @Override
          protected void onUnload() {
          wireDownEvents();
          }

          public GenericTextTag(String tagName, String text) {
          this(tagName);
          setText(text);
          }

          public void setAttachedInfo(E info) {
          mAttachedInfo = info;
          }

          public final HandlerRegistration addHandler(
          final TouchClickEvent.TouchClickHandler<E> handler) {
          if (!mWantsEvents) {
          mWantsEvents = true;
          wireUpEvents();
          }
          return this
          .addHandler(
          handler,
          (GwtEvent.Type<TouchClickEvent.TouchClickHandler<E>>) TouchClickEvent
          .getType());
          }

          public E getAttachedInfo() {
          return mAttachedInfo;
          }

          private native void registerDomTouchEvents() /*-{
          var instance = this;
          var element = this.@net.lenharts.gwt.sampleiphoneapp.client.util.GenericTextTag::getElement()();

          element.ontouchstart = function(e){
          instance.@net.lenharts.gwt.sampleiphoneapp.client.util.GenericTextTag::onDomTouchStart()();
          };

          element.ontouchmove = function(e){
          instance.@net.lenharts.gwt.sampleiphoneapp.client.util.GenericTextTag::onDomTouchMove()();
          };

          element.ontouchend = function(e){
          instance.@net.lenharts.gwt.sampleiphoneapp.client.util.GenericTextTag::onDomTouchEnd()();
          };
          }-*/;

          private native void unRegisterDomTouchEvents() /*-{
          var instance = this;
          var element = this.@net.lenharts.gwt.sampleiphoneapp.client.util.GenericTextTag::getElement()();

          element.ontouchstart = null;

          element.ontouchmove = null;

          element.ontouchend = null;
          }-*/;

          public void onDomTouchStart() {
          mMovedAfterTouch = false;
          }

          public void onDomTouchMove() {
          mMovedAfterTouch = true;
          }

          public void onDomTouchEnd() {
          if (mMovedAfterTouch) {
          return;
          }

          fireTouchClick();
          }

          private void fireTouchClick() {
          fireEvent(new TouchClickEvent<E>(this));
          }

          public String getText() {
          return getElement().getInnerText();
          }

          public void setText(String text) {
          getElement().setInnerText(text);
          }

          private static native boolean hasTouchEvent(Element e) /*-{
          var ua = navigator.userAgent.toLowerCase();

          if (ua.indexOf("safari") != -1 &&
          ua.indexOf("applewebkit") != -1 &&
          ua.indexOf("mobile") != -1)
          {
          return true;
          }
          else
          {
          return false;
          }
          }-*/;

          }

          The code below creates an <li> tag that contains the text "Hello World!". The "Hello World!" test is not fixed. The class has getter and setter methods for changing the text too.

          GenericTextTag<String> li = new GenericTextTag<String>("li", "Hello World!");

          GWT Does Not Have to be Ugly

          As you can see in the examples above, you can create any HTML tag, and you can use any CSS style you like. The sky is the limit on how you style your GWT application. Many people see the GWT examples and they have an "application" feel to it. Granted the built-in widgets encourage this, but as you can see, you are not restricted to their widgets and you can have a more "document" feel to your webpage. You have complete control of the body tag.

          Why GWT?

          For me, the difference between GWT and Javascript is whether you want to work with a static language like Java, or a dynamic language like Javascript.  I assert, with little proof, that static languages are better.  They provide a much deeper verification of your code which I feel is necessary of any sizable application.  I remember the VBScript days, and I don't want to return to shipping bugs that are trival to find by a static language compiler.

          There are issues with the size of the javascript download that both sides claim to be better.

          • Pure Javascript is smaller because you include a library from Google that the user has already downloaded plus your small javascript code that you write
          • GWT is smaller, because the GWT compiler is highly optimized to remove dead code and to restructure your code to be as small as possible.  For instance, if you only use 10% of a library, then the downloaded code includes only 10% of the library.

          Small apps can work OK with a dynamic language, with the potential that it will have less code to download.  However for larger applications, the GWT compiler will produce smaller code as compared to hand written, minified Javascript and the static language will help reduce the number of bugs.

          posted on 2010-12-22 11:28 都市淘沙者 閱讀(645) 評論(0)  編輯  收藏 所屬分類: GWT/RIA/SmartGWT/MVP


          只有注冊用戶登錄后才能發表評論。


          網站導航:
           
          主站蜘蛛池模板: 德阳市| 赤水市| 阳朔县| 神池县| 友谊县| 开鲁县| 芒康县| 望奎县| 海淀区| 仁化县| 广元市| 游戏| 广德县| 平远县| 广州市| 奎屯市| 尚志市| 砀山县| 泗洪县| 丹东市| 民勤县| 阜城县| 曲松县| 陆良县| 成武县| 阜南县| 北川| 汨罗市| 桃园县| 韶关市| 高碑店市| 深水埗区| 水城县| 屏边| 旺苍县| 甘谷县| 通榆县| 宁陵县| 凤翔县| 拉萨市| 乌兰县|