GWT - 如何编译移动排列

问题描述 投票:0回答:2

我知道如何使用延迟绑定为不同的用户代理编译 GWT 应用程序,但这似乎没有提供区分桌面和移动浏览器的方法。

除了制作基于 gwt-mobile-webkit 的新应用程序之外,如何将现有的 GWT 应用程序转换为具有重新设计的移动界面?

gwt mobile
2个回答
3
投票

如果您使用此处描述的 MVP 模式,您可以根据用户代理切换视图的实现。

您可以拥有 ClientFactoryImpl 和 ClientFactoryMobileImpl。然后使用 GWT.create(ClientFactory.class) 创建定义到 .gwt.xml 文件中的实现。

这是 .gwt.xml 文件的示例

<replace-with class="com.example.client.ClientFactoryImpl">
  <when-type-is class="com.example.client.ClientFactory" />
  <when-property-is name="user.agent" value="ie6" />
</replace-with>

<replace-with class="com.example.client.ClientFactoryMobileImpl">
  <when-type-is class="com.example.client.ClientFactory" />
  <when-property-is name="user.agent" value="mobilesafari" />
</replace-with>

您始终可以使用此处描述的技术设置 user.agents:http://code.google.com/p/google-web-toolkit/wiki/ConditionalProperties

http://jectbd.com/?p=1282


2
投票

您可以从 GWT 中看到这个示例应用程序: http://code.google.com/p/google-web-toolkit/source/browse/trunk/samples/mobilewebapp/src/com/google/gwt/sample/mobilewebapp/?r=10041 它检测“FormFactor.gwt.xml”模块中的外形尺寸,可能如下所示:

<?xml version="1.0" encoding="UTF-8"?>

<!-- Defines the formfactor property and its provider function. -->
<module>

  <!-- Determine if we are in a mobile browser. -->
  <define-property name="formfactor" values="desktop,tablet,mobile"/>

  <property-provider name="formfactor">
  <![CDATA[
      // Look for the formfactor as a url argument.
      var args = location.search;
      var start = args.indexOf("formfactor");
      if (start >= 0) {
        var value = args.substring(start);
        var begin = value.indexOf("=") + 1;
        var end = value.indexOf("&");
        if (end == -1) {
          end = value.length;
        }
        return value.substring(begin, end);
      }

      // Detect form factor from user agent.
      var ua = navigator.userAgent.toLowerCase();
      if (ua.indexOf("iphone") != -1 || ua.indexOf("ipod") != -1) {
        // iphone and ipod.
        return "mobile";
      } else if (ua.indexOf("ipad") != -1) {
        // ipad.
        return "tablet";
      } else if (ua.indexOf("android") != -1 || ua.indexOf("mobile") != -1) {
        /*
         * Android - determine the form factor of android devices based on the diagonal screen
         * size. Anything under six inches is a phone, anything over six inches is a tablet.
         */
        var dpi = 160;
        var width = $wnd.screen.width / dpi;
        var height = $wnd.screen.height / dpi;
        var size = Math.sqrt(width*width + height*height);
        return (size < 6) ? "mobile" : "tablet";
      }

      // Everything else is a desktop.
      return "desktop";
  ]]>
  </property-provider>

</module>
© www.soinside.com 2019 - 2024. All rights reserved.