美好的一天。我正在创建一个简单的Xamarin.Forms(Portable)应用程序,它允许我创建Employee的记录并将其保存在Visual Studio中的数据库中。所有记录都显示在ListView中。
当我在UWP上运行它时,我的应用程序运行正常。它正确显示ListView上创建的所有记录。
但是当我在Android平台上运行它时,它不会在ListView中显示任何记录。我甚至试图检查Web API是否返回值。我确实得到了一个价值。意思是,问题出在Android平台上,为什么它没有显示任何记录。
你遇到过这个问题吗?您认为这背后的原因是什么?我现在能做什么?对不起,我只是Xamarin的新手。希望您能够帮助我。非常感谢。
这些是我的一些代码:
EmployeeRecordsPage.xaml
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="XamarinFormsDemo.EmployeeRecordsPage"
xmlns:ViewModels="clr-namespace:XamarinFormsDemo.ViewModels;assembly=XamarinFormsDemo"
xmlns:controls="clr-namespace:ImageCircle.Forms.Plugin.Abstractions;assembly=ImageCircle.Forms.Plugin.Abstractions"
BackgroundImage="bg3.jpg"
Title="List of Employees">
<ContentPage.BindingContext>
<ViewModels:MainViewModel/>
</ContentPage.BindingContext>
<StackLayout Orientation="Vertical">
<ListView ItemsSource="{Binding EmployeesList}"
HasUnevenRows="True"
IsPullToRefreshEnabled="True"
>
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<Grid Padding="10" RowSpacing="10" ColumnSpacing="5">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<controls:CircleImage Source="icon.png"
HeightRequest="66"
HorizontalOptions="CenterAndExpand"
Aspect="AspectFill"
WidthRequest="66"
Grid.RowSpan="2"
/>
<Label Grid.Column="1"
Text="{Binding EMPLOYEE_NAME}"
TextColor="#24e97d"
FontSize="24"/>
<Label Grid.Column="1"
Grid.Row="1"
Text="{Binding EMP_NUMBER}"
TextColor="White"
FontSize="18"
Opacity="0.6"/>
<Label Grid.Column="1"
Grid.Row="2"
Text="{Binding DEPT_COMP}"
TextColor="White"
FontSize="18"
Opacity="0.6"/>
</Grid>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
<StackLayout Orientation="Vertical"
Padding="30,10,30,10"
HeightRequest="20"
BackgroundColor="#24e97d"
VerticalOptions="Center"
Opacity="0.5">
<Label Text="© Copyright 2016 SMESOFT.COM.PH All Rights Reserved "
HorizontalTextAlignment="Center"
VerticalOptions="Center"
HorizontalOptions="Center" />
</StackLayout>
</StackLayout>
</ContentPage>
...
EmployeeViewModel.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Forms;
using XamarinFormsDemo.Models;
using XamarinFormsDemo.Services;
namespace XamarinFormsDemo.ViewModels
{
public class MainViewModel : INotifyPropertyChanged
{
private List<Employee> _employeesList;
private Employee _selectedEmployee = new Employee();
public List<Employee> EmployeesList
{
get { return _employeesList; }
set
{
_employeesList = value;
OnPropertyChanged();
}
}
public MainViewModel()
{
InitializeDataAsync();
}
private async Task InitializeDataAsync()
{
var employeesServices = new EmployeesServices();
EmployeesList = await employeesServices.GetEmployeesAsync();
}
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void OnPropertyChanged([CallerMemberName] string propertyName = null)
{
var handler = PropertyChanged;
if (handler != null) handler(this, new PropertyChangedEventArgs(propertyName));
}
}
}
...
EmployeesServices.cs
using Plugin.RestClient;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using XamarinFormsDemo.Models;
namespace XamarinFormsDemo.Services
{
public class EmployeesServices
{
public async Task<List<Employee>> GetEmployeesAsync()
{
RestClient<Employee> restClient = new RestClient<Employee>();
var employeesList = await restClient.GetAsync();
return employeesList;
}
}
}
答案 0 :(得分:3)
我认为问题在于,在获得项目后,您没有更新ListView:
EmployeesList = await employeesServices.GetEmployeesAsync();
我建议使用ObservableCollection而不是List。使用可观察的集合,当添加或删除ObservableCollection中的项时,ListView应自动更新。所以而不是:
private List<Employee> _employeesList;
尝试:
private ObservableCollection<Employee> _employeesList;
或者您可以将ListView.ItemsSource
分配给null
,然后在获得数据后返回List<Employee>
:
编辑:正如Jaycee所述,以下用于重置ItemsSource的代码不应位于视图模型中,因为视图模型无法访问listView
。但是,刷新listView.ItemsSource
的方法是正确的。视图模型只需要让视图知道EmployeesList
已更新,然后您可以重置视图后面代码中的listView.ItemsSource
。这可以通过我能想到的几种方式完成。例如,您可以在ViewModel中拥有一个委托,该委托可以提供代码实现,或者视图模型可以引发视图可以订阅的事件。基本上你只需让视图知道它需要刷新ListView
ItemsSource
。但是,如前所述,使用ObservableCollection
代替列表可以避免所有这些。
EmployeesList = await employeesServices.GetEmployeesAsync();
listView.ItemsSource = null;
listView.ItemsSource = EmployeesList;
要完成上述操作,您必须为ListView提供一个名称,您可以使用该名称在代码中引用它。你可以在XAML中为ListView设置这个名字:
<ListView
ItemsSource="{Binding EmployeesList}"
HasUnevenRows="True"
IsPullToRefreshEnabled="True"
x:Name="listView"
>
但是ObservableCollection将是更好的选择。