not populating ListView using mvvm approach

Dmitry Barabash 1 Reputation point
2021-03-25T18:32:36.983+00:00

Hello everyone. I need help. I am trying to populate ListView with data from API using mvvm approach.
here is my model :

public class MakeUp
{
    public int Id { get; set; }
    public string Brand { get; set; }
    public string Name { get; set; }
    public string Price { get; set; }
    public object PriceSign { get; set; }
    public object Currency { get; set; }
    public string ImageLink { get; set; }
    public string ProductLink { get; set; }
    public string WebsiteLink { get; set; }
    public string Description { get; set; }
    public double? Rating { get; set; }
    public string Category { get; set; }
    public string ProductType { get; set; }
    public IList<object> TagList { get; set; }
    public DateTime CreatedAt { get; set; }
    public DateTime UpdatedAt { get; set; }
    public string ProductApiUrl { get; set; }
    public string ApiFeaturedImage { get; set; }
    public IList<ProductColor> ProductColors { get; set; }
}

public class ProductColor
{
    public string HexValue { get; set; }
    public string ColourName { get; set; }
}

this is how i get the API data
interface

[Headers("Content-Type: application/json")]
public interface IMakeUpApi
{
    [Get("/api/v1/products.json?brand={brand}")]
    Task<List<MakeUp>> GetMakeUps(string brand);

    [Post("/api/v1/addMakeUp")]
    Task<MakeUp> CreateMakeUp([Body] MakeUp makeUp, [Header("Authorization")] string token);
}

modelview

    private string _name;
    private string _price;
    private double _rating;
    private string _category;
    private ObservableCollection<MakeUp> _makeupList;

    #region--prop
    public ObservableCollection<MakeUp> MakeUpList
    {
        get { return _makeupList; }
        set
        {
            _makeupList = value;
            SetProperty(ref _makeupList, value);
        }
    }
    public string Name
    {
        get { return _name; }
        set
        {
            _name = value;
            SetProperty(ref _name,value);
        }
    }
    public string Price
    {
        get { return _price; }
        set
        {
            _price = value;
            SetProperty(ref _price,value);
        }
    }
    public double Rating
    {
        get { return _rating; }
        set
        {
            _rating = value;
            SetProperty(ref _rating,value);
        }
    }
    public string Category
    {
        get { return _category; }
        set
        {
            _category = value;
            SetProperty(ref _category,value);
        }
    }
    #endregion

    #region--ctor

    public MainPageViewModel(INavigationService navigationService, IUserDialogs userDialogs) :base(navigationService,userDialogs)
    {
        _navigationService = navigationService;
        _userDialogs = userDialogs;
        Title = "Main Page"; 
        CallApi();
    }
    #endregion

    public async void CallApi()
    {
        var apiResponse = RestService.For<IMakeUpApi>("http://makeup-api.herokuapp.com");
        var product = await apiResponse.GetMakeUps("maybelline");
        MakeUpList = new ObservableCollection<MakeUp>(product);
    }

xaml View

    <StackLayout VerticalOptions="Center">

    <ListView 
        x:Name="CosmeticList"
        ItemsSource="{Binding MakeUpList }">
        <ListView.ItemTemplate>
            <DataTemplate>

                <ViewCell>
                    <ViewCell.View>

                        <StackLayout>
                            <Image 
                                WidthRequest="300"
                                HeightRequest="250"/>
                            <StackLayout>
                                <Label
                                    Text="{Binding Brand}"
                                    FontAttributes="Bold"
                                    />
                                <Label
                                    Text="{Binding Category}"
                                    />
                                <Label
                                    Text="{Binding Name}"
                                    />
                                <Label
                                    Text="{Binding Price}"
                                    FontAttributes="Bold"
                                    />
                            </StackLayout>

                        </StackLayout>
                    </ViewCell.View>
                </ViewCell>

            </DataTemplate>
        </ListView.ItemTemplate>
    </ListView>

</StackLayout>

I see that the collection is filling (54 elements), but what is wrong with my View? Help plz

Xamarin
Xamarin
A Microsoft open-source app platform for building Android and iOS apps with .NET and C#.
5,294 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. JessieZhang-MSFT 7,706 Reputation points Microsoft Vendor
    2021-03-26T05:47:31.9+00:00

    Hello,

    Welcome to our Microsoft Q&A platform!

    I see that the collection is filling (54 elements)

    Hi @Dmitry Barabash , do you mean you have got the list value for MakeUpList ,right?

    Then have you set the BindingContext for your page(e.g. YourPage )? For example:

         public YourPage()  
     {  
               InitializeComponent();        
              BindingContext =  new MainPageViewModel();  
              }  
    

    Update:

    I found you used Prism.Mvvm in your app. In this condition, you don't need to set the BindingContext explicitly, because your app have done this when your app

    RegisterForNavigation for your page.

             protected override void RegisterTypes(IContainerRegistry containerRegistry)  
        {  
            containerRegistry.RegisterForNavigation<NavigationPage>();  
            containerRegistry.RegisterForNavigation<SignInPage, SignInPageViewModel>();  
            containerRegistry.RegisterForNavigation<SignUpPage, SignUpPageViewModel>();  
            containerRegistry.RegisterForNavigation<MainPage, MainPageViewModel>();  
    
         // other code  
    
        }  
    

    And in your xaml, you defined an Image with height 250 , and you don't set property HasUnevenRows="True" for your listview , just as follows:

                                   <Image   
                                 WidthRequest="300"  
                                 HeightRequest="250"/>  
    

    So, your listview item will not show the other labels.

    You can try to set the property HasUnevenRows="True" for your listview. And remove the Image if you don't need it.

    <ListView   
         x:Name="CosmeticList"  
         ItemsSource="{Binding MakeUpList }" HasUnevenRows="True">  
            <ListView.ItemTemplate >  
                <DataTemplate>  
      
                    <ViewCell >  
                        <ViewCell.View>  
                            <StackLayout>  
                                <!--<Image   
                                 WidthRequest="300"  
                                 HeightRequest="250"/>-->  
                                <StackLayout >  
                                    <Label  
                                     Text="{Binding Brand}"  
                                     FontAttributes="Bold"  
                                     />  
                                    <Label  
                                     Text="{Binding Category}"  
                                     />  
                                    <Label  
                                     Text="{Binding Name}"  
                                     />  
                                    <Label  
                                     Text="{Binding Price}"  
                                     FontAttributes="Bold"  
                                     />  
                                </StackLayout>  
      
                            </StackLayout>  
                        </ViewCell.View>  
                    </ViewCell>  
                </DataTemplate>  
            </ListView.ItemTemplate>  
        </ListView>  
    

    Best Regards,

    Jessie Zhang

    ---
    If the response is helpful, please click "Accept Answer" and upvote it.

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


  2. Dmitry Barabash 1 Reputation point
    2021-03-29T10:51:43.49+00:00

    MakeUpList gets 54 elements. вот скрины
    82367-listemulatorr.png