Xamarin 形成带有图像的 ListView |文字 |时间

Xamarin Forms ListView with Image | Text | Time

我目前正在使用 xamarin 表单构建混合应用程序。 我正在尝试构建一个列表视图,它显示带有图标和时间戳的错误。

这是我想重新制作成 xamarin 形式的概念设计。 我使用 ImageCell 来尝试让图标和一些文本一起工作,但现在我想在图标上方(或文本旁边,PO 不确定)添加第三个元素(时间)

正如@Jason 所说,您应该使用 ViewCell.

会是这样的:

<ViewCell>
    <StackLayout Orientation="Horizontal">
        <StackLayout>
            <Label HorizontalOptions="Center"
                   HorizontalTextAlignment="Center"/>
            <Image >
        </StackLayout>
        <Label VerticalOptions="FillAndExpand"
               VerticalTextAlignment="Center"
               HorizontalOptions="FillAndExpand"/>
    </StackLayout>
</ViewCell>

添加您需要的其他属性和绑定,单元格就可以使用了。