GWT - 横向面板部件 (HorizontalPanel)



介绍

HorizontalPanel 部件表示一个面板,它将所有部件水平排列在一列中。

类声明

以下是 com.google.gwt.user.client.ui.HorizontalPanel 类的声明:

public class HorizontalPanel
   extends CellPanel
      implements HasAlignment, InsertPanel.ForIsWidget

类构造函数

序号 构造函数 & 描述
1

HorizontalPanel()

空水平面板的构造函数

类方法

序号 函数名称 & 描述
1

void add(Widget w)

添加子部件。

2

HasHorizontalAlignment.HorizontalAlignmentConstant getHorizontalAlignment()

获取水平对齐方式。

3

HasVerticalAlignment.VerticalAlignmentConstant getVerticalAlignment()

获取垂直对齐方式。

4

void insert(IsWidget w, int beforeIndex)

5

void insert(Widget w, int beforeIndex)

在指定索引之前插入子部件。

6

protected void onEnsureDebugId(java.lang.String baseID)

受影响的元素:-# = 给定索引处的单元格。

7

boolean remove(Widget w)

移除子部件。

8

void setHorizontalAlignment(HasHorizontalAlignment.HorizontalAlignmentConstant align)

设置添加到此面板的部件使用的默认水平对齐方式。

9

void setVerticalAlignment(HasVerticalAlignment.VerticalAlignmentConstant align)

设置添加到此面板的部件使用的默认垂直对齐方式。

继承的方法

此类继承自以下类的方法:

  • com.google.gwt.user.client.ui.UIObject

  • com.google.gwt.user.client.ui.Widget

  • com.google.gwt.user.client.ui.Panel

  • com.google.gwt.user.client.ui.ComplexPanel

  • com.google.gwt.user.client.ui.CellPanel

  • java.lang.Object

HorizontalPanel 部件示例

此示例将引导您完成简单的步骤,以演示如何在 GWT 中使用 HorizontalPanel 部件。请按照以下步骤更新我们在GWT - 创建应用章节中创建的 GWT 应用:

步骤 描述
1 按照GWT - 创建应用章节中的说明,创建一个名为HelloWorld的项目,其包名为com.tutorialspoint
2 修改HelloWorld.gwt.xmlHelloWorld.cssHelloWorld.htmlHelloWorld.java,如下所述。其余文件保持不变。
3 编译并运行应用程序以验证已实现逻辑的结果。

以下是修改后的模块描述符src/com.tutorialspoint/HelloWorld.gwt.xml的内容。

<?xml version = "1.0" encoding = "UTF-8"?>
<module rename-to = 'helloworld'>
   <!-- Inherit the core Web Toolkit stuff.                        -->
   <inherits name = 'com.google.gwt.user.User'/>

   <!-- Inherit the default GWT style sheet.                       -->
   <inherits name = 'com.google.gwt.user.theme.clean.Clean'/>

   <!-- Specify the app entry point class.                         -->
   <entry-point class = 'com.tutorialspoint.client.HelloWorld'/>

   <!-- Specify the paths for translatable code                    -->
   <source path = 'client'/>
   <source path = 'shared'/>

</module>

以下是修改后的样式表文件war/HelloWorld.css的内容。

body {
   text-align: center;
   font-family: verdana, sans-serif;
}

h1 {
   font-size: 2em;
   font-weight: bold;
   color: #777777;
   margin: 40px 0px 70px;
   text-align: center;
}

.gwt-CheckBox {
   margin: 10px;	
}

以下是修改后的 HTML 宿主文件war/HelloWorld.html的内容。

<html>
   <head>
      <title>Hello World</title>
      <link rel = "stylesheet" href = "HelloWorld.css"/>
      <script language = "javascript" src = "helloworld/helloworld.nocache.js">
      </script>
   </head>

   <body>
      <h1>HorizontalPanel Widget Demonstration</h1>
      <div id = "gwtContainer"></div>
   </body>
</html>

让我们来看一下 Java 文件src/com.tutorialspoint/HelloWorld.java的内容,它将演示 HorizontalPanel 部件的使用。

package com.tutorialspoint.client;

import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.user.client.ui.CheckBox;
import com.google.gwt.user.client.ui.DecoratorPanel;
import com.google.gwt.user.client.ui.HorizontalPanel;
import com.google.gwt.user.client.ui.RootPanel;

public class HelloWorld implements EntryPoint {

   public void onModuleLoad() {
      // Create a horizontal panel			
      HorizontalPanel horizontalPanel = new HorizontalPanel();

      // Add CheckBoxes to horizontal Panel
      for(int i = 1;  i <= 10; i++){
         CheckBox checkBox = new CheckBox("Item" + i);
         horizontalPanel.add(checkBox);
      }

      DecoratorPanel decoratorPanel = new DecoratorPanel();
      decoratorPanel.setWidth("500");
      decoratorPanel.add(horizontalPanel);

      // Add the widgets to the root panel.
      RootPanel.get().add(decoratorPanel);
   }
}

完成所有更改后,让我们像在GWT - 创建应用章节中一样,在开发模式下编译并运行应用程序。如果应用程序一切正常,则会产生以下结果:

GWT HorizontalPanel Widget
gwt_layout_panels.htm
广告