- GWT 教程
- GWT - 首页
- GWT - 概述
- GWT - 环境设置
- GWT - 应用
- GWT - 创建应用
- GWT - 部署应用
- GWT - 使用 CSS 样式
- GWT - 基本组件
- GWT - 表单组件
- GWT - 复杂组件
- GWT - 布局面板
- GWT - 事件处理
- GWT - 自定义组件
- GWT - UIBinder
- GWT - RPC 通信
- GWT - JUnit 集成
- GWT - 调试应用
- GWT - 国际化
- GWT - History 类
- GWT - 书签支持
- GWT - 日志框架
- GWT 有用资源
- GWT - 常见问题解答
- GWT - 快速指南
- GWT - 有用资源
- GWT - 讨论
GWT - SimplePanel 组件
简介
SimplePanel 组件表示面板的基本类,该面板仅包含一个组件。
类声明
以下是 com.google.gwt.user.client.ui.SimplePanel 类的声明:
public class SimplePanel
extends Panel
implements HasOneWidget
类构造函数
| 序号 | 构造函数 & 描述 |
|---|---|
| 1 |
SimplePanel() 创建一个空面板,使用 DIV 作为其内容。 |
| 2 |
protected SimplePanel(Element elem) 创建一个空面板,使用指定的浏览器元素作为其内容。 |
类方法
| 序号 | 函数名称 & 描述 |
|---|---|
| 1 |
void add(Widget w) 将一个组件添加到此面板。 |
| 2 |
protected Element getContainerElement() 重写此方法以指定面板子组件的容器,而不是根元素。 |
| 3 |
Widget getWidget() 获取面板的子组件。 |
| 4 |
java.util.Iterator<Widget> iterator() 获取包含组件的迭代器。 |
| 5 |
boolean remove(Widget w) 移除一个子组件。 |
| 6 |
void setWidget(IsWidget w) 设置接收器的唯一组件,如果存在先前的组件则替换它。 |
| 7 |
void setWidget(Widget w) 设置此面板的组件。 |
继承的方法
此类继承自以下类的方法:
com.google.gwt.user.client.ui.UIObject
com.google.gwt.user.client.ui.Widget
com.google.gwt.user.client.ui.Panel
java.lang.Object
SimplePanel 组件示例
此示例将引导您完成简单的步骤,以演示如何在 GWT 中使用 SimplePanel 组件。按照以下步骤更新我们在GWT - 创建应用章节中创建的 GWT 应用:
| 步骤 | 描述 |
|---|---|
| 1 | 在GWT - 创建应用章节中说明的包com.tutorialspoint下创建一个名为HelloWorld的项目。 |
| 2 | 修改HelloWorld.gwt.xml、HelloWorld.css、HelloWorld.html和HelloWorld.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;
}
以下是修改后的 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>SimplePanel Widget Demonstration</h1>
<div id = "gwtContainer"></div>
</body>
</html>
让我们在 Java 文件src/com.tutorialspoint/HelloWorld.java中包含以下内容,这将演示 SimplePanel 组件的使用。
package com.tutorialspoint.client;
import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.user.client.ui.DecoratorPanel;
import com.google.gwt.user.client.ui.Label;
import com.google.gwt.user.client.ui.RootPanel;
import com.google.gwt.user.client.ui.SimplePanel;
public class HelloWorld implements EntryPoint {
public void onModuleLoad() {
// Create a Simple Panel
SimplePanel simplePanel = new SimplePanel();
Label label = new Label("A Simple Label.");
//add label to simple panel
simplePanel.add(label);
//set height and width of simple panel
simplePanel.setHeight("200");
simplePanel.setWidth("200");
DecoratorPanel decoratorPanel = new DecoratorPanel();
decoratorPanel.add(simplePanel);
// Add the widgets to the root panel.
RootPanel.get().add(decoratorPanel);
}
}
完成所有更改后,让我们像在GWT - 创建应用章节中一样,在开发模式下编译并运行应用程序。如果应用程序一切正常,这将产生以下结果: