android nativescript 平台不支持 ListviewLinearLayout itemWidth
ListviewLinearLayout itemWidth not supporting in android platform of nativescript
文档:
为了在 recyclerview 中执行水平滚动,我根据文档使用了 ListViewLinearLayout。
他们清楚地提到了文档本身:The itemHeight and itemWidth properties are iOS specific. If not used, items are sized dynamically depending on the data coming from the source.
代码:
<ListViewLinearLayout scrollDirection="Horizontal" tkListViewLayout itemWidth="70">
</ListViewLinearLayout>
itemWidth 属性 仅适用于 ios。不在 android。宽度 借助 itemWidth 我们可以设置项目之间的宽度。
我尝试设置 width="70" 或 width="70%" 或 android:itemWidth="70" all.Any 解决此问题的建议没有任何效果。
如文档中所述,itemWidth
仅在 iOS 上受支持。如果您想在项目之间设置 space,请在项目模板上使用 margin
。
文档:
为了在 recyclerview 中执行水平滚动,我根据文档使用了 ListViewLinearLayout。
他们清楚地提到了文档本身:The itemHeight and itemWidth properties are iOS specific. If not used, items are sized dynamically depending on the data coming from the source.
代码:
<ListViewLinearLayout scrollDirection="Horizontal" tkListViewLayout itemWidth="70">
</ListViewLinearLayout>
itemWidth 属性 仅适用于 ios。不在 android。宽度 借助 itemWidth 我们可以设置项目之间的宽度。
我尝试设置 width="70" 或 width="70%" 或 android:itemWidth="70" all.Any 解决此问题的建议没有任何效果。
如文档中所述,itemWidth
仅在 iOS 上受支持。如果您想在项目之间设置 space,请在项目模板上使用 margin
。