0

私はsencha touch2を使用しています。以下のコードのように、1 つのラベルに 4 つのラベル コンテンツを表示したいと考えています。要件に従って、ラベルは 1 つしかありません。このラベルには、4 つのラベルの内容を追加する必要があります。このコンテンツでは、タグを使用して各ラベルを分割しています。生成された apk/ipa ファイルの後。ipad では問題なく表示され、要件に従って次々とラベルが表示されます。しかし、Androidフォンではコンテンツを分割していません。テキストは改行せずに連続しています。この問題を解決する方法を教えてください。ありがとうございました

Ext.define("MyPath", {
    extend: 'Ext.Panel',
    xtype: 'SpecificationView',
    requires: ['Ext.Label'],
    config: {

        title: 'Specification',
        iconCls: 'star',
        scrollable: true,
        xtype: 'dataview',
        layout: {
            align: 'center',
            pack: 'center'
        },
        items: [                         
            {
                margin: '10',
                xtype: 'label',
                html: '<label><b>Flooring</b></label></br><label>Combination of Granite/Vitrified tiles in common areas. Vitrified tiles in foyer, living, dining and kitchen. Ceramic tiles in bedroom, balcony and utility.</label></br></br><label ><b>Doors & Windows</b></label></br><label>Apartment main door in teakwood frame with polished designer shutters. with mosquito mesh and safety grill</label>'
            }
            ]
    }

});

4

1 に答える 1

1

ねえ @ user1177921 これを試してください、

html: '<label><b>Flooring</b></label><br />' + 
      '<label>Combination of Granite/Vitrified tiles in common areas. Vitrified tiles in foyer, living, dining and kitchen. Ceramic tiles in bedroom, balcony and utility.</label><br />' + 
      '<label ><b>Doors & Windows</b></label><br />' + 
      '<label>Apartment main door in teakwood frame with polished designer shutters. with mosquito mesh and safety grill</label>'

お役に立てれば幸いです。

于 2012-06-09T06:05:55.197 に答える