-4
votes
0answers
29 views

Android listview and spinner how to do?

I'm doing an Android App with a list of TV series and who there's a Listview. When I click for example in "How i meet your mother" the item goes to an other Activity who see the Synopsis and a Button ...
0
votes
3answers
100 views

Refreshing ListView row inside adapter with spinner in it

I have a custom adapter extended from a base one, and I got a spinner inside each row (something related to quantity for each product -> item from listview). When user selects a different value of the ...
0
votes
1answer
97 views

how to set array in listview android [closed]

I am using listview in my app and firstly i update listview from add button but later i need to select more items so for that i need to move to another page to pick value so for that i am using intent ...
0
votes
0answers
134 views

OnClickListener on listview populated on spinner change from AsyncTask does not work

Here is my problem: I have created a listview which is populated on a spinner change from AsincTask with a simple adapter like this: @Override protected void onPostExecute(SimpleAdapter ...
0
votes
0answers
46 views

listView and Spinner

i'm trying to do an activity that contains a filterEditText, Spinner and a listView. I want the when users check an option on the spinner, my list change and show only hte elements for this option. I ...
0
votes
0answers
252 views

Spinner in ListView Android

In my application I have implemented the ListView which containg Spinner and TextView but I'am not able to get the values from the spinner when i click on the spinner. I have implemented the ...
0
votes
2answers
255 views

Mono for Android: Listview scrolling issue with spinners and edit text

My problem is on two fronts. First issue: Scrolling amnesia I have a ListView with spinners and edit texts. It acquires it's data from webservice. The problem is when I write up a value on the ...
0
votes
0answers
21 views

ListView doesn't reset

I have two Spinners spinner1 and spinner2 spinner1 have onTouch listener and inside onItemSelectedListener, spinner2, the same. I have ListView in spinner2 in OnItemSelectedListener. ListView ...
1
vote
1answer
97 views

how to get Spinner in ListView

There is a ListView in layout of my Activity. listview_layout.xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" ...
1
vote
1answer
215 views

Spinner in listview

I have a listview (multi choice). It works perfect. I used a custom adapter for it. There is a text in each row and a checkbox. Marked items will be shown as a result in a textview. I want to add a ...
1
vote
1answer
66 views

How to adjust the spinnerrs in a listview

I have some spinner in a ListView(Left side some text and righ side spinner) like this everything is ok but i want spinners to be align like this can someone please help to adjust the views..,.
1
vote
0answers
308 views

Android - How to update ListView when Spinner is selected

I'm trying to update listview when an item in spinner is selected,but it's not working fine. here is my spinner : Spinner spnTypeSchool = (Spinner)findViewById(R.id.spnType); ...
-3
votes
2answers
812 views

Spinner in a listview in android [closed]

Hi i wanted to create a view exactly like this. Once the item in a list view is clicked, a spinner with radio buttons should open.
3
votes
2answers
534 views

ListSelector color change (while selecting list) and also put text-color (black) for Spinner does not working

Hello i want to change default orange color to red while selecting list item from spinner below is my code To put Text in middle in spinner list and remove radio button in selection i have make ...
1
vote
1answer
392 views

ListView inside a Spinner : adapter conflict for event detection

I have a listview embed in a spinner within the onCreate method. I want to fire a toast msg on the list items on click event but can't set up the onClick listener on the ListView items. I'm not ...
0
votes
2answers
68 views

How to implement linked ListViews?

I want to create a dropDown listview and to open a another one(dropDown) when an item is selected in the first one . I have read a lot about spinner,ListViews etc..nothing seems to be useful... thank ...
-1
votes
2answers
966 views

How do I pass values of spinner to another activity and display them in ListView?

I've created 2 projects. One is to key in personal information and second application is where there's ListView displayed of the information that's keyed in. I've a spinner in the 1st application. I'm ...
1
vote
0answers
2k views

Android ListView with Spinner and get its value

I am trying to create a List which has a TextView and a Spinner. The data for TextView and Spinner comes from array or JSON. I have the following files: main Activity: public class ...
4
votes
2answers
446 views

How to create spinner with heading in it?

I am just thinking to create like below in spinner, but i am not sure how to make it work Fruits (heading unclickable) Apple Mango Orange Cars (heading unclickable) BMW Lenova ...
1
vote
1answer
325 views

How to send HttpPost of a list item and a spinner and a checkbox collectively

I have a ListView ,checkbox and spinner in one layout , and on different layout i have called the listview item by parsing it from xml. how to send collectively the value of checkbox , spinner and the ...
3
votes
1answer
445 views

How to get all the values from a spinner within a ListView Custom Adapter

Im trying to create a Spinners within a ListView, but i dont know how to get all the values of each spinner in a List of strings for example. This is the code of the Adapter: public class ...
0
votes
1answer
645 views

Spinner inside dynamic listview

Hi all and thanks for your time. I am trying to create a listview with custom rows, every row contains a spinner. I am filling the row with data like this: ArrayList<HashMap> list = new ...
0
votes
2answers
834 views

How to get Spinner inside ListView work in Android?

I am developing an app in which I need a ListView whose rows have a TextView, 2 CheckBox and a Spinner. However, I am experiencing issues with onItemSelected() of the Spinner, as it gets called each ...
0
votes
1answer
405 views

How can i get the values of List view item for the selected spinner

I'm create an application in which i am to show some element in a list with some spinner for selection Yes/No but my problem is that how i'll get the values for particular list item what user have ...
0
votes
1answer
352 views

Adding Icons to List Preference

I have a list preference which shows a list of languages of different Countries. I'd like to have the flag of each Country shown as well. Can someone please tell me the best way to go about this? ...
0
votes
1answer
255 views

Spinner inside custom ListView freezes on returning from another activity

Hello all here is my problem. My app's listview (which is inside a tab widget) contains various types of rows. I have had many problems setting this up and here is another 1. Please see here for the ...
0
votes
2answers
263 views

Android Spinner and ListView with ALL item

Helo. I have the following requirement: I have a list (ListView or Spinner depends on orientation) that shows all the projects in the database. This List works as a filter for the detail list of ...
2
votes
1answer
1k views

Android: Spinners within a ListView loose their values when I add dynamically new ListView entries

My activity contains a button and a ListView. The ListView contains a Spinner and an EditText view. I use the button each time I want to insert a new row entry in my Activity's ListView. I have ...
1
vote
1answer
120 views

Weird behavior of spinner in TablelLayout with list view

I am trying to put table layout in list view in that table layout i have one spinner which is not displaying properly it is stretched in width and doesn't looks good. I am inflating the table layout ...
0
votes
1answer
400 views

Android: Use spinner text in CursorAdapter

I've got an ListView that is filled with an SimpleCursorAdapter. One of the Fields that should be displayed in this view (TBTsqlHelperBudgets.KEY_INTERVAL) is stored in the DB as int (index of the ...
0
votes
1answer
550 views

How to use the spinner inside the listview

I've create the android application..I have to place the spinner inside the listview..I dont know how to place and get the value from the spinner..pls tell some idea .Thanks in advance
0
votes
1answer
253 views

Android listview columns based on spinner's selection

another question of mine. I have created a screen that consists of a Spinner and a Listview. The Spinner takes only 2 values and the Listview is populated accordingly to the Spinner's selection.The ...
0
votes
1answer
177 views

Android, how to render two (close) controls - a single selection (spinner) and a multiple one (ListView) - visually similar?

I need to implement - for my Android app - two user controls quite similar, and very close each other in the UI layout: a single selection control, and a multiple one. I know the Android solution is ...
0
votes
1answer
122 views

How to retrieve listview object used in a spinner.

I want to implement ListView.OnScrollListener on the listview used in the spinner dialog. However for this i need to get hold on the listview object used in the spinner. Is there a way in which i ...
1
vote
1answer
903 views

Having a Custom ListView with a spinner and checkbox Implemented

All I'm looking to do, is have a ListView with a textView and EITHER a spinner on the right side or a check box. I'm having so much difficulty with this it's ridiculous. Can anyone help me please? :(. ...
0
votes
1answer
100 views

Unusual ListView and Spinner issues with SQLDatabase

I haven't been able to figure this one out. I have two activities, one with a listview, the other with a spinner. Both are supposed to be binding to the same data source. Both are using the same ...
0
votes
1answer
219 views

Organize a spinner shown in a listview

How can I organize a spinner alphabetically that has its fields in a listView without manually changing the field data?
0
votes
2answers
6k views

Spinner delete items

I have developed an application in which i have one edit text value of edit text is entered in spinner on button clicked an the item i select to delete gets deleted but the problem is that when i ...
2
votes
0answers
641 views

can't populate listview based on selected spinner item. getting Window already focused, ignoring focus gain of

I have a spinner that displays a list of classes a user is enrolled in. After the user selects a class, they press a "search" button which pulls up a list of studygroups they can join for that class. ...
3
votes
2answers
9k views

Android - How to implement a listbox as a modal dialog/popup

In my Android app, when a user clicks on a button, I want a list box to show up as a modal dialog, just like the way a Spinner works, except that the list box can also allow multiple choices. I tried ...
0
votes
1answer
780 views

how to get component from listView?

yesterday I posted this question and got answer, and was able to do what I wanted. multiple spinner but one in xml but now the question is how to get each spinner from listView's row and do stuff ...
1
vote
1answer
2k views

Android - spinners inside a ListView

i have a ListView with a custom Servizio object in every row. I'm using SimpleAdapter for this and it's ok. The problem is that i can't fill the spinner inside every Servizio. This code inside ...
4
votes
1answer
2k views

Custom spinner popup list in android

Is there a way to replace the standard ListView that pops up when opening a Spinner with a custom one? I would like for my Spinner list to be Filterable (and/or even possibly have two tabs with ...
3
votes
1answer
2k views

How to enable fast scroll (thumb) in Android Spinner's drop-down menu?

In an application I have a Spinner that has tens of items. When the user taps on the spinner, a popup dialog appears that shows the list of possible selections. However, since there are (sorted) tens ...
1
vote
4answers
2k views

Android - How to tell is someone has pressed a SPINNER but not changed the visible item in it

I have a spinner, which mostly works. If a user selects one of the items in it, the 'onItemSelected' routine catches it just fine. But if a user clicks the same spinner, but does not change from the ...
6
votes
3answers
6k views

How to popup list like a spinner without spinner in android?

I have a spinner widget in my activity which lets users pick a list name. Normally, the function of the spinner is to switch between lists but for a couple of instances, I swap out the selection ...