5,132 questions
0 votes
0 answers
75 views
How to resize spinner buttons of a ion-input type number in a ion-alert?
I would like to resize the spinner buttons of the number input I declared in a ion-alert. view of the too small spinner buttons I tried tips I found but it does not work in my case. In my ts file: ...
0 votes
0 answers
35 views
Setting Spinner dropDownWidth to match_parent sets it to an absurdly large number
I have this DropDownPreference and I want to set the width of its dropdown to match the width of the screen. <DropDownPreference android:key="soapServerList" ...
2 votes
1 answer
59 views
Show top items when clicking on a spinner without changing the selection
In my Android app, I have a spinner many items (enough to not be able to display all of them at the same time. Scrolling is needed) The default behavior of the spinner is that when you click on the ...
1 vote
2 answers
68 views
Angular material progress spinner reactive
in Angular material progress spinner component we can actually set size by setting diameter. I want to know if there is an option to make this diameter responsive so it based on window size. <mat-...
4 votes
0 answers
126 views
How to show a dialog when using a spinbox in tkinter
I have a spinbox in my tkinter application and I want to show a warning in certain circumstances import tkinter as tk from tkinter import ttk, messagebox widgets = None root = None def main() -> ...
0 votes
0 answers
48 views
Android Studio Spinner issue
I created a spinner where I want the app to output the value the spinner stops at, however, if the spinner pointer stopped at let's say Italy, The text output is you choose India, I've tried ...
1 vote
0 answers
563 views
Spinner with action and output with bubbletea library
I'm willing to have a spinner displayed while running a function that have output to print. I cannot figure out how to do so and have pretty print, anyone already faced that ? I cannot find any ...
1 vote
0 answers
67 views
Fetch SQLite database Table Orderby condition in android java
How to conditionally retrieve the data of any table in the SQLite database? I want to extract condition wise data from a table in the database which I have not been able to successfully for the last 2 ...
0 votes
2 answers
144 views
How to add spinner animation code in the code and stop after finishing to load the page
I am trying to add Spinner in below code. I have tried many ways but not succussed. I have included various position the spinner code but sometimes it runs but does not stop. Or some time never run. ...
0 votes
0 answers
56 views
Add spinner to right of checkbox on layout
I have the following layout: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:...
1 vote
1 answer
61 views
Null pointer exception with spinner on kotlin
I am encountering an issue with my Kotlin Android code while implementing a Spinner with an onItemSelectedListener. I am trying to populate the Spinner with data retrieved from a SQLite database, but ...
0 votes
1 answer
554 views
ngx-spinner error Property '"bdColor"' is incompatible with index signature
I was trying to add spinner to my angular project but got weird error: my ngx-spinner-component.d.ts line with error: ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration<NgxSpinnerComponent, [...
0 votes
1 answer
68 views
How to vertically center a CircularProgressIndicator in a Button?
I want to create a Button that while disabled, shows a CircularProgressIndicator (use case: user clicks the button, a network request is made and during this the button is disabled with a nice spinner ...
1 vote
1 answer
52 views
add Items (FILES) from Directory to Spinner List
i´m trying to add files from a directory to spinner list, but i got nothing, (spinner list is empty) hoyever the folder countains 3 files in it. i checked whether the folder exists or not, (the folder ...
1 vote
0 answers
27 views
Populating a spinner with data obtained from a spinner in a different activity
how do I populate a spinner to depend on spinner data in a different activity?In android studio using java and also with sqlite db. I already have both spinners but I am struggling to make the second ...