3

我遇到了 android 4.0.3 问题。当我的应用程序加载时,数据视图应该出现(在主页上)。但是在我点击这个空间之前,有一个空白空间。点击后一切正常。这同样适用于列表和嵌套列表视图。只需加载应用程序,然后清空屏幕并点击后 - 没问题。在 iPhone 或旧的 android 版本上一切正常。

也许有人面临同样的问题?

数据视图代码(没什么特别的):

  xtype: 'dataview',
  itemTpl: '<div class="judge-list-item"><tpl if="img"><img src="{img}"/></tpl><small>{description}</small><h4>{title}</h4></div>',
  scrollable: false,
  styleHtmlContent: true,
  listeners: {
            initialize: function () {
                           ...
                        },
                        itemtap: function (dataview, indexx, target, record, eOpts) {
                           ...
                        }
             }
4

1 回答 1

0

尝试:

Ext.defer(function() {
    myDataview.refresh();
}, 50);
于 2013-08-01T11:44:01.783 回答