Questions tagged [listview]
A ListView is a graphical screen control or widget provided by UI libraries in a majority of modern operating systems to show items in a list form.
50,689
questions
0
votes
0answers
8 views
EasyListView Component with Styled Scrollbar
My Delphi application uses the EasyListView component. I really love it, but unfortunately the scroll bar is not style/theme aware. I have looked into the code and it uses its own ...
0
votes
2answers
9 views
React Native Flatlist numColumns is not making multiple columns
I have just started to learn React Native, and this is my first project - a news app. However, I have successfully rendered the image and description of the news using React Native Flatlist.
But when ...
0
votes
0answers
20 views
SwiftUI list duplicates children depending on open groups in macOS BigSur
I faced a problem that swiftui list doesn't show items correctly.
Check two screenshots:
Item "Two" has 2 children: "SubitemOne" and "SubitemTwo", when "SubitemOne&...
-2
votes
0answers
14 views
How can I get the first column in my database to show it in a list view in Fragment? [closed]
Hi guys I'm trying to complete my project on android studio to do a weather app that use database to store the profiles (contain profile name, city name , unit, API).
But I have a question to complete ...
-1
votes
1answer
36 views
C# Windows Forms ListView get columns real width after autoresize by width = -1?
I've come through some auto column (ColumnHeader) widths on WinForms ListView control.
Width = -1 sets auto-width based on content width and -2 sets based on header and content.
However I cannot find ...
0
votes
1answer
15 views
Routes in Flutter
I'm new in Flutter and I'm building a Flutter app, and there are these routes that I create, it's almost working, the problem is when I return to the previous screen, that should return the HomeScreen(...
0
votes
1answer
19 views
How to pass SQLite query results to another page for ListView in Flutter
How can I show below queryRow() list to another page as ListView? How can I transfer data from below page to another as queryRow[]. Please kindly support me for the solution since I am sick and tired ...
0
votes
0answers
23 views
Command Click event of an item of an Expanded ListView not working Xamarin Forms
I have an observable Collection of Groups and each group contains a number of Participants. So far I have an expandable list view using an Expander and everything is shown fine Screenshot.
However, ...
0
votes
3answers
29 views
Kotlin Can't Send Data From Model Class With Putextra
I have created a structure like the one below. When I click the list in the first activity, I want the information about that item in the second activity. However, I cannot send data with putextra. I ...
0
votes
1answer
12 views
Weird space between SliverAppBar and ListView in flutter
I wrote a NestedScrollView interface in the example of the Flutter document, but when I look at the ListView as the body, I find that there is a weird gap between the ListView and the SliverAppBar. ...
0
votes
2answers
34 views
How to add Navigation to a List of elements in Flutter
I have model Class called Categories
class Categories { //Categories class
final String route;
final String categoryName;
final String categorySubTitle;
Categories({this.route, this....
-1
votes
1answer
35 views
Add dots in listview scroll in flutter
I need to display categories in a scroll with 3X3 in grid view and it was working fine and slide also working fine but i cant able to achieve the dots for the scrolling .. I need like carousal . Is it ...
0
votes
1answer
35 views
How do I make each ListView element create a unique activity [Android Studio - Kotlin]
I'm new to Android Development and Kotlin, so any help would be greatly appreciated.
So I've created an app in which there's a ListView which, once clicked, takes you to a new activity. However, for ...
1
vote
1answer
33 views
Handle Button Clicks in CursorAdapter
I want to achieve drop down and sum up for a View in my ListView Data is being fetched from the database and am using a cursor adapter, I have tried to add onClickListner for the button in ...
0
votes
0answers
19 views
Add Onclick To List Generated From Model
My aim is to show information in another activity with itemclick in a listview as below. But I cannot send information to the other screen with putextra. Because I created my list from a model. How ...