xamarin form listview image binding
问题 If I add an item to a listview, the items is added but the image is not showed. I have to restart application to view it. The Item is correctly added but the image is not visible. here the cs. ObservableCollection<Libreria> items = new ObservableCollection<Libreria>(new Libreria().GetLibrerie()); public Home() { InitializeComponent (); lstLibrerie.ItemsSource = items; //pickerLibrerie.ItemsSource = new Libreria().GetLibrerie(); } public void Reload(Libreria newLib) { items.Insert(0, newLib);