我开发了一个使用Xamarin.Forms(MVVM设计模式)的聊天应用程序。 我需要在发送消息后自动向下滚动ListView(聊天消息列表)。
我的观点:
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
...>
<ContentPage.Content>
<StackLayout Style="{StaticResource MainLayoutStyle}">
...
<Frame
HorizontalOptions="FillAndExpand"
VerticalOptions="FillAndExpand"
CornerRadius="5"
BackgroundColor="White"
Padding="5">
<ScrollView>
<StackLayout>
<ListView
x:Name="MainScreenMessagesListView"
ItemTemplate="{StaticResource MessageTemplateSelector}"
HasUnevenRows="True"
BackgroundColor="#e5ddd5"
ItemsSource="{Binding Messages}">
</ListView>
</StackLayout>
</ScrollView>
</Frame>
...
</StackLayout>
</ContentPage.Content>
由于我的设计模式,我不能使用ScrollTo方法(我是对的吗?) 并且xaml中没有ScrollTo属性。
那么这个问题的解决方案是什么?
谢谢!
答案 0 :(得分:5)
解决此问题的一种方法是使用MessagingCenter。
从您的PageModel发送信号,即
MessagingCenter.Send<object> (this, "MessageReceived");
然后在你的Page的代码隐藏中,你可以订阅它并向下滚动或做任何事情。
MessagingCenter.Subscribe<object> (this, "MessageReceived", (sender) => {
MainScreenMessagesListView.ScrollTo(..., ScrollToPosition.End, true);
});
您需要将最后一项确定为ListView
中的对象,而不是点。您可以通过两种方式执行此操作,或者通过强制转换ItemsSource
的{{1}}属性在页面中确定它。但也许最好将它作为MessagingCenter调用的参数提供。
在您的PageModel中,您可以将其更改为:ListView
并检索这样的值:
MessagingCenter.Send<object, object> (this, "MessageReceived", lastReceivedMessage);