Sencha Touch - hBox 布局



说明

hbox - 此布局允许对元素进行水平分布。

语法

以下是使用 hbox 布局的简单语法。

 layout: 'hbox' 

范例

以下是一个显示 hBox 布局用法的简单示例。

<!DOCTYPE html>
<html>
   <head>
      <link href = "https://cdn.sencha.com/touch/sencha-touch-2.4.2/resources/css/sencha-touch.css" rel = "stylesheet" />
      <script type = "text/javascript" src = "https://cdn.sencha.com/touch/sencha-touch-2.4.2/sencha-touch-all.js"></script>
      <script type = "text/javascript">
         Ext.application({
            name: 'Sencha',
            launch: function() {
               Ext.create('Ext.Container', {
                  fullscreen: true, layout: 'hbox', items: [
                     {
                        xtype: 'panel', html: 'message list', flex: 1
                     },
                     {
                        xtype: 'panel', html: 'message preview', flex: 2
                     }
                  ]
               });
            }
         });
      </script>
   </head>
</html>

这会产生以下结果 -

sencha_touch_layout.htm
广告