Skip to main content

All Questions

0 votes
1 answer
284 views

How to display a text with different length inside a list view with different width in xamarin forms

I have a list contains logs and each log have a different size. for example the first log contains fifty character and next contains 500 characters I need to display whole 500 characters inside a list ...
Afsal's user avatar
  • 37
0 votes
1 answer
311 views

Adding controls with bindings to an Xamarin ListView at runtime?

I am attempting to add a label with binding to a ListView at runtime (basic example for StackOverflow purposes, this isn't something I can just add to the XAML ItemTemplate). The issue I am running ...
Apqu's user avatar
  • 5,041
0 votes
1 answer
65 views

different position of items in a listview xamarin

I'm trying to use Listview. First i used it to have my items in a column align, it worked Now I'm trying to search a solution to have not align my items in column. For this I have a grid with 8 ...
B.Bento's user avatar
  • 21
3 votes
3 answers
966 views

listview item text changes on scroll

I have a list view in which i am binding multiple data like labels and image and i have that list in my frame so when list size gets greater then 10 items or so then on scroll my image resizes it self ...
Masti Broz Top's user avatar
0 votes
1 answer
159 views

Xamarin - Deselect Listview Item does not work properly in iOS

I have a listview and I want an Item to deselect if I tap it again. So basically I tap an Item it gets selected I tap it again it gets deselected. My Code is working just fine on Android. It also ...
Kajot's user avatar
  • 1,192
3 votes
0 answers
1k views

Xamarin.Forms ListView duplicate items on Android

When I run the app on Android, only the first few items in the ListView are displayed correctly, every item after that is a duplicate of one of the first shown items on the list. This is only an UI ...
Stefan's user avatar
  • 188
0 votes
1 answer
1k views

listview cell not updating using data binding

I binded the item source and the data. The data does change but the UI does not reflect the changes. I noticed whenever TestUpdateCell is called, SetProperty(ref items, value) is not call either. But ...
MartDavious's user avatar
0 votes
1 answer
118 views

xamarin mutli selection listview

It's been a while that i'm trying to get an anwser to my problem, but i didn't find it... So i'm searching for your help. I work on xamarin to make an android application but i dont use Xamarin.Forms ...
Louis Mantop's user avatar
0 votes
1 answer
278 views

Xamarin Android textview within bounds

I'm trying to create a listview item that consists of a textview and a button horizontally. I want the textview to be on the left and the button to be on the right. The button always has the same size ...
Aidal's user avatar
  • 869
0 votes
1 answer
94 views

xamarin custom ListView does nothing when one item is selected

public class ListViewFaixaAdapter : BaseAdapter<Model> { LayoutInflater _inflater; List<Model> _faixas; public ListViewFaixaAdapter(LayoutInflater inflater) : base(){ ...
Cavallari Rodrigo's user avatar