RowHeight更改在iOS中没有任何效果

时间:2018-01-30 12:55:18

标签: listview xamarin xamarin.forms

我有一个ListViewHasUnevenRows设置为false。更改其RowHeight在Android中运行良好,但在iOS中无效。行高更改仅在调整视图大小或向其添加行时反映。

我尝试将HasUnevenRows设置为true(因为我的ViewCell知道并设置了自己的身高)。这对行为没有影响。

是否有强制“重新计算”ListView的功能?

===编辑:包括模板,按要求===

        listView.ItemTemplate = new DataTemplate(() =>
        {
            ViewCell view = new ViewCell();
            view.View = new TabbedListRow(this);
            view.View.SetBinding(BackgroundColorProperty, "BackgroundColor");
            return view;
        });

0 个答案:

没有答案