listview Questions

4

Solved

I tried a few different approaches but I can't get this to work. The layout I want to achieve is really simple and it's a breeze to implement in native Android: Fixed Container on top (blue) Scro...
Melodize asked 19/10, 2018 at 8:51

20

Solved

I'm trying to construct a simple login page for my Flutter app. I've successfully built the TextFields and log in/Sign in buttons. I want to add a horizontal ListView. When I run the code my elemen...
Insolvable asked 14/8, 2017 at 7:12

7

Solved

i just started with flutter. in my case, i want to show 10 items listview on my home page. but that listview only shows 9 items. listview cannot be scrolled to show other item. can you see whats wr...
Cowpox asked 29/11, 2021 at 11:31

9

Solved

Is there any way to show the scroll indicator on the ListView? Here is my basic code: ListView.builder( itemCount: 50, itemBuilder: (context, index) => ListTile(title: Text("Item= ${index...
Clyte asked 28/10, 2018 at 10:50

12

class MyHome extends StatefulWidget { @override State<StatefulWidget> createState() => new MyHomePage2(); } class MyHomePage2 extends State<MyHome> { List items = new List(); b...
Spermophile asked 1/12, 2017 at 11:20

3

Solved

I am using ListView.buildler to layer Widget, into a vertical scroll. My only issue with this approach is that when the scroll reaches the end of my content. It wraps back to the top automatically....
Monopetalous asked 23/3, 2018 at 0:2

6

Solved

I've been trying to get some messages ordered by date, but I'm not getting it working. I have tried different packages like grouped_list and sticky_headers. With sticky_headers I managed to get a h...
Metrology asked 23/6, 2020 at 8:47

3

Solved

I have been using a Winform ListView in my project. When the list view (items arranged in list) exceeds the window space it starts a new list on the right and creates a horizontal scroll bar, I nee...
Boren asked 3/8, 2011 at 8:9

16

Solved

I am used to put an special view inside the layout file as described in the ListActivity documentation to be displayed when there is no data. This view has the id "android:id/empty". <TextView ...
Butte asked 29/1, 2015 at 14:42

7

Solved

Is there an option to hide a GridViewColumn somehow like this: <ListView.View> <GridView> <GridViewColumn Header="Test" IsVisible="{Binding Path=ColumnIsVisible}&quo...
Dentelle asked 8/9, 2009 at 8:54

5

Solved

I have a List, MyStuff has a property of Type Float. There are objects with property values of 10,20,22,30. I need to write a query that finds the objects closest to 21, in this case it would fin...
Gummous asked 16/9, 2010 at 2:34

10

Solved

I'm a new programmer and new in Android. I'm using this example http://www.androidhive.info/2012/09/android-adding-search-functionality-to-listview/ and it works great. Now I want to make the ite...
Selfpropelled asked 22/1, 2014 at 22:26

3

Solved

I'm trying to retrieve posts from a Firestore collection called "posts", which contains the post creator's userID and post description and this is possible by using both StreamBuilder and FutureBui...
Polygynous asked 3/10, 2018 at 22:55

7

Solved

I have a listview in c# with three columns and the view is details. I need to add a item to each specific column but I am having a hard time with this. I have tried several things. Here is what I g...
Anthropometry asked 30/3, 2012 at 23:49

12

Solved

I know, this question was asked before, but I haven't seen a working answer for it. Is there any way to hide some items in a ListView without changing source data? I tried to set visibility of th...
Prevision asked 18/2, 2011 at 12:53

19

Solved

I have My Layout like below: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:l...
Hyracoid asked 1/10, 2013 at 11:45

7

I'm not sure if I'm missing something. I'm playing around with Flutter and I want to build a (simple) view with some text widgets, buttons and other widgets (see picture below). These widgets shoul...
Lamented asked 26/10, 2018 at 22:28

2

Solved

Am I missing something? The documentation says that events bubble up from the innermost child to the ancestors, but below code will not print "dragged" to the console. It does print "tapped" though...
Uird asked 20/10, 2018 at 21:37

16

Solved

I've made a ListView in Flutter, but now I have some ListTiles in this ListView that can be selected. Upon selection, I want the background color to change to a color of my choice. I don't know how...
Hartz asked 17/3, 2018 at 1:24

12

Solved

Very new to Flutter. I've been able to utilize HTTP requests for data, build a ListView, edit a Row in that List and other basics. Excellent environment. I've managed to cobble together a badly con...
Trinomial asked 23/4, 2018 at 16:59

4

Solved

I have a ListView In My Winform that has 4columns, Name, Money, ID and Level. The problem is when I run my app, I still have the ability to mess with the columns widths and change them. I searche...
Pillory asked 25/7, 2012 at 18:55

3

I have a list of links in a ListView. I want to add an mouseEventListener to each cell of the list so that whenever a user double clicks the list item link is opened. I can write the functionality ...
Streamliner asked 20/3, 2014 at 18:29

23

Solved

How can I scroll to a special widget in a ListView? For instance I want to scroll automatically to some Container in the ListView if I press a specific button. ListView(children: <Widget>[ C...
Incriminate asked 7/3, 2018 at 13:25

6

Solved

I currently have a need to use a RecyclerView (or ListView) but the number of items is fixed at 4. I want those 4 items to equally use the available space on the screen. The RecyclerView is the onl...
Incorrigible asked 2/8, 2015 at 21:17

12

Solved

I am new in Binding and WPF recently I've learned how to create a listBox with multiple columns using Binding tech <ListView ItemsSource="{Binding Items}" Margin="306,70,22,17" MouseDoubleClic...
Thunderclap asked 18/6, 2012 at 18:47

© 2022 - 2024 — McMap. All rights reserved.