SwiftUI List not selectable in iOS 15
I am using a List in an app I'm developing. I just discovered that selecting an item from the List isn't working in iOS 15. It does work in iOS 16, 17 and 18. (I had to download the iOS 16 simulator to...
View ArticleASP.NET Grid View vs. List View
What are the advantages of using listview over gridview? I need pagination, editing rows, inserting rows, and deleting rows in my view. Which control is best for that? It seems like GridView does not...
View ArticleView holder OnClickListener event issue
I am creating a listview adapter with view holder :final ViewHolder holder;if (convertView == null) { convertView = layoutInflater.inflate(R.layout.activity_list_layout, null); holder = new...
View ArticleWhite Column in List View of My Fiori App
I'm having a problem with my Fiori app. In the list view, there's always a white column on the right that I can't remove. I've tried various layout options, but nothing has helped so far.here is the...
View ArticleListView not showing up / appearing android studio
I have two activities. MainActivity.java and HomeActivity.java. I am trying to create a ListView in HomeActivity.java just with "One", "Two", "Three", and "Four" as the List items but the ListView is...
View ArticleFlutter ListView lazy loading in both directions (up, down)
I would like to have a ListView in flutter which provides lazy loading in both directions (up, down).Example: There are 60000 items in the backend database which can be theoretically displayed.First I...
View ArticleCalling a ListView from a separate dart file
In my app, I have a ListView that I would like to populate with Firebase data. I succesfully did it, but now, I would like to separate my ListView in another dart filemain.dartclass _MyHomePageState...
View ArticleHow to initialize listview inside fragment in activity
I am new to android. I am trying to initialize listview in fragment using a custom adapter but I have problem with using the custom adapter constructor.Here is my custom adapter code.public class...
View ArticleCalling a ListView from a separate dart file--do I have to define my list as...
In my app, I have a ListView that I would like to populate with Firebase data. I successfully did it, but now, I would like to separate my ListView in another dart filemain.dartclass _MyHomePageState...
View ArticleApply custom border to each row in a List with SwiftUI
So, I want a List in SwiftUI, where the border of each row depends on some function of the contents of the row. Normally I can do this easily with .border() but List seems to take care of the styling...
View ArticleWhy is my ListView custom drawing not applying row background colors in Win32...
I'm trying to apply custom row background colors to a ListView in a dialog-based Win32 application using WM_NOTIFY and NM_CUSTOMDRAW.However, the colors are not being applied correctly, and the...
View ArticleJavaFX: Wrapping text in ListView
I am trying to build a text editor. I'm using a ListView for storing comments. I want the string to be wrapped automatically without me having to scroll through it horizontally so that long string...
View Articleadding header to multicolumn listview in android
I tried the following question in this forum Adding Header in Listviewbut the problem is same I've used a linearlayout having three textview as header to my multicolumn listview but the problem is that...
View ArticleHow to populate a ListBox in windows forms in C++/CLI
How can I add items std::strings to a ListBox in a for loop in C++/CLI ? Is it even possible?It's a Windows Desktop CLR project in C++/CLI (Not C#) with Forms.
View ArticleDisplay empty text when there are no items in ListView Windows forms
I'm trying to display an empty text message inside a listview when I have no items inside it (that's when the form is initialized).I've tried searching different method out of which one is using the...
View ArticleCustom ListViewItem in ListView
possible ways to show item in ListViewItem WPFUpdate:that's the control i need to add to the ListView, in here i only need to display the Computer Name, still the item should hold the Computer...
View ArticleListViewBuiler inside Row flutter
i am trying to add a listview inside a row , but i got this ErrorI have in the row Two widgets the first one with a column , the second widget is the listview builder that return another widget .I am...
View ArticlePassing volley response to listview using an ArrayAdapter
I'm unable to figure out how to pass the volley response to the listview using the adapter(myadapter). Do I use myadapter.add() and pass it what? I read tutorials and after weeks trying, I think it's...
View ArticleC#/WPF: Make a GridViewColumn Visible=false?
Is there an option to hide a GridViewColumn somehow like this:<ListView.View><GridView><GridViewColumn Header="Test" IsVisible="{Binding Path=ColumnIsVisible}"...
View Article