锘??xml version="1.0" encoding="utf-8" standalone="yes"?>成人亚洲性情网站WWW在线观看,亚洲国产主播精品极品网红,亚洲日本香蕉视频http://www.tkk7.com/jelver/category/44712.html姣忓ぉ榪涙涓鐐圭偣zh-cnThu, 23 Dec 2010 01:30:41 GMTThu, 23 Dec 2010 01:30:41 GMT60GWT涔熻兘鍋歩Phone搴旂敤http://www.tkk7.com/jelver/articles/341302.html鍐版渤蹇嫾鍐版渤蹇嫾Wed, 22 Dec 2010 03:28:00 GMThttp://www.tkk7.com/jelver/articles/341302.htmlhttp://www.tkk7.com/jelver/comments/341302.htmlhttp://www.tkk7.com/jelver/articles/341302.html#Feedback0http://www.tkk7.com/jelver/comments/commentRss/341302.htmlhttp://www.tkk7.com/jelver/services/trackbacks/341302.html

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.



鍐版渤蹇嫾 2010-12-22 11:28 鍙戣〃璇勮
]]>
主站蜘蛛池模板: 最新亚洲精品国偷自产在线| 亚洲精品无码高潮喷水在线| 亚洲国产成人超福利久久精品| 中文字幕免费不卡二区| 亚洲人成色77777| a级毛片黄免费a级毛片| 亚洲国产精品VA在线观看麻豆| 久久久久久久久久久免费精品| 中文字幕精品亚洲无线码二区| 美女网站在线观看视频免费的 | 99久久免费国产精精品| 亚洲中文字幕无码永久在线| 91成人免费观看在线观看| 亚洲AV无码欧洲AV无码网站| 久久国产免费一区二区三区| 亚洲AV成人精品网站在线播放| 日韩精品免费在线视频| 亚洲综合激情九月婷婷| 成人免费无码大片a毛片软件| 亚洲丰满熟女一区二区哦| 亚洲情a成黄在线观看| a级毛片黄免费a级毛片| 亚洲熟妇无码久久精品| 女人被弄到高潮的免费视频 | 亚洲视频在线观看免费视频| 在线看片v免费观看视频777| 亚洲国产AV无码一区二区三区 | 俄罗斯极品美女毛片免费播放| 国产va免费精品| 亚洲国产美女福利直播秀一区二区 | 欧洲亚洲国产清在高| 2020久久精品国产免费| 亚洲AV无码国产精品永久一区| 亚洲精品乱码久久久久久不卡| 久久免费看少妇高潮V片特黄| 亚洲日韩精品无码专区| 在线A亚洲老鸭窝天堂| 免费在线看v网址| 好吊色永久免费视频大全 | 亚洲人成网网址在线看| 天堂亚洲免费视频|