listview Questions
16
Solved
Using Xamarin.Forms, how can I define the highlight/background color of a selected/tapped ListView item?
(My list has a black background and white text color, so the default highlight color on iOS...
Waybill asked 17/9, 2014 at 7:59
3
Solved
How to display the selected row from listview to textBox?
This is how I do int dataGridView:
private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
{
dataGridView1.Ro...
6
Solved
I want to make a custom List View having Two TextViews and a radio Button in a single row. And on listitem click the radio button state should be toggle. I cannot use Simple Adapter here.
I have a...
2
How can I hide or collapse some group in ListView?
I just add some items
contactListView.Items.Add(new ISIMlistViewItem(contact));
if (contact.availability == 6)
contactListView.Items[contact.id...
6
Solved
I'm developing a smart device project using the Compact Framework.
I have a ListView with several checkable ListViewItems: the property CheckBoxes is true. I need to check only one ListViewItem at...
Dysphemia asked 13/12, 2012 at 11:9
4
How to add alphabet order on side in section list?
I checked out some packages such as react-native-atoz and react-native-selectedsectionlist.
What is the best one? or how do I implement one from t...
Hudgens asked 25/9, 2017 at 4:29
5
Solved
I have the following source code:
@override
Widget build(BuildContext context) {
return Scaffold(
body: CustomScrollView(
controller: scrollController,
slivers: <Widget>[
SliverList(
de...
3
Solved
I have dynamic data and I am using ListView.builder to show the user. I simply use a Text to show the data to user. Only right I add an edit icon so when user clicks the icon it enables user to edi...
Famished asked 10/12, 2018 at 6:11
4
Solved
How can you change the background color of the Headers of a ListView?
11
Solved
I want to create a ListView that has two columns with a fixed width and a third column to fill in the remaining space. So something like this:
<ListView>
<ListView.View>
<GridView...
4
Solved
I have a Windows Forms app, that has a single ElementHost containing a WPF UserControl... in my WPF, I have a VERY simple ListView:
<ListView Margin="4" ItemsSource="{Binding Notifications}">...
Scary asked 17/11, 2008 at 19:9
19
Solved
I built an app with ReactNative both for iOS and android with a ListView. When populating the listview with a valid datasource, the following warning is printed at the bottom of the screen:
Warn...
Knavery asked 3/1, 2016 at 12:1
4
Solved
Alright so i have a list(which is also a fragment dialog) that displays a users friends and each item in that list has a button(labeled friends in the picture) and when users click that button id l...
Ruhl asked 26/8, 2013 at 4:16
3
Solved
I've got a composable on a Screen which shows a list of Track items (favourites) :
var favourites: MutableList<Track> by mutableStateOf(mutableListOf())
@ExperimentalFoundationApi
@Composabl...
Birdiebirdlike asked 25/4, 2021 at 10:50
15
Solved
Is it possible to turn off the selection of a WPF ListView, so when user clicks row, the row is not highlighted?
(source: konim5am at artax.karlin.mff.cuni.cz)
I would like the row 1 to look just ...
3
Solved
I have a Listview in detail mode with 3 columns. I want to set the text align for the headers to "center". This works for the last two columns but not for the first. If I want to change it to "cent...
Javier asked 28/8, 2012 at 9:0
2
Solved
Even if I know it's not ideal - I need to programmatically populate a listView (for whatever reason).
I am declaring my columns in the markup:
<ListView.View>
<GridView>
<GridVi...
Anatolia asked 20/8, 2009 at 11:0
2
Solved
In Windows, a List View can have its items grouped, as in the following picture:
My application employs a white-on-black GUI. Most of the controls (buttons, edit fields, check-boxes etc.) I have...
3
Solved
I have followed this tutorial and fully implemented a horizontally scrolling list.
Now, what I would like to do is to create a vertical list where each row is a horizontal list.
I tried different a...
Romanist asked 28/6, 2018 at 18:5
5
Is it possible to implement smooth scroll in a WPF listview like how it works in Firefox?
When the Firefox browser contained all listview items and you hold down the middle mouse button (but not re...
6
Solved
I have a custom listView. The main layout xml is something like this:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
and...
5
Solved
This is what my Container looks like:
new Container(
width: 500.0,
height: 250.0,
padding: new EdgeInsets.fromLTRB(20.0, 40.0, 20.0, 40.0),
decoration: new BoxDecoration(
color: const Color(0...
Lovash asked 6/5, 2017 at 13:0
5
Solved
from documentation:
onEndReachedThreshold number
Threshold in pixels (virtual, not physical) for calling onEndReached.
so I just wanted to know what it means, is it threshold from the top, o...
Satrap asked 7/9, 2016 at 9:37
7
Solved
Hi I want to put this code :
highlight: Rectangle {
color: "black"
radius: 5
opacity: 0.7
focus: true
}
into mouseArea in onclick handler:
MouseArea {
id: mouse_area1
z: 1
hoverEnabled:...
Evie asked 22/2, 2012 at 17:35
6
Solved
I want to change spacing between items in listView (maybe i should use another View-element?) Code looks like this:
<ListView SelectionMode="None" HorizontalContentAlignment="Left" >
<L...
Allegory asked 21/7, 2012 at 18:26
© 2022 - 2024 — McMap. All rights reserved.