0
votes
0answers
42 views

Putting dynamically generated spinners into GridView - how to achieve it?

Spinners in my case are generated dynamically: for (int i = 0; i < spinnerCount; i++) { spinner = new Spinner(getApplicationContext()); spinner.setId(i); ...
0
votes
0answers
51 views

Populate Spinner from DB without managingCursor

ManagingCursor is depreciated. So I am trying to fill my spinner without the managingCursor. That is how it is working now with the managingCursor: public void LoadVorlagenSpinner(){ Cursor ...
0
votes
1answer
86 views

Spinner and cursor

Hi I've been looking how to populate a spinner from a cursor for a while and can't do it properly, this is my code: private void fillSpinner(){ DatabaseConnector dbConnector = new ...
2
votes
0answers
100 views

Can't get selected item from spinner populated via a DB

I'm trying to get the currently selected item in a spinner which has been populated previously from a database. Here is my code which handles the selection: spinner.setOnItemSelectedListener(new ...
1
vote
1answer
118 views

Populate spinner with different cursors

I have a spinner that I populate with a cursor from database sqlite column, this works OK, but isn't ideal. I added another spinner to select a column and show it in spinner, but this is my problem ...
1
vote
0answers
199 views

Populate Spinner Data

Is there something wrong with my spinner?? My app didnt crash, but the toast DB could not open appeared. So there MUST be something wrong with my population of spinner.. can anybody help spot the ...
0
votes
1answer
101 views

Spinner not a view that can be bounds(sp) by this SimpleCursorAdapter

I'm trying to adapt my query to my spinner object with some trouble, I get the error listed as the title. Here is the code portion where it crashes: Spinner classDropDown = (Spinner) ...
0
votes
1answer
451 views

Spinner with custom cursor adapter and “empty” selection

i have cursor which selects records from my CarProfile table and use custom adapter to show brand, model and the linenceplate in the spinner selection. my problem is that i want to have selection ...
1
vote
0answers
298 views

“Injecting” data into an Android spinner being populated with an SQLite Cursor?

I am using an SQLite Cursor to grab all the records I require from my table. I am using SimpleCursorAdapter to create multi-column Spinner using the Cursor. While most values can be grabbed in this ...
0
votes
2answers
586 views

Android: Get Dataset ID from cursor populated Spinner

I'm using a spinner to let the user choose a database relation (1:n) in an create and update dialog. Populating the spinner with a database cursor works fine: //set up spinner Spinner spinner ...
0
votes
1answer
411 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 ...
1
vote
1answer
917 views

Android : set selected item of a Spinner from DB with Cursor

I have a problem with Cursors. I have 3 tables in my DB : facture (means invoice), vehicule (vehicle) and garage. An invoice concerns one vehicle and one garage. When I create an invoice, I select ...
1
vote
1answer
2k views

Binding data from a Cursor to a Spinner Android

I am trying to populate a Spinner in an Android dialog. When the user clicks a button, a dialog pops up and I load the layout from an XML file. Now I am trying to populate that Spinner from a SQL ...
5
votes
2answers
2k views

How to insert extra elements into a SimpleCursorAdapter or Cursor for a Spinner?

I have a Spinner which is to show a list of data fetched from database. The data is returned to a cursor from query, and the cursor gets passed to spinner's SimpleCursorAdapter. It is working fine as ...
0
votes
1answer
406 views

Problem using Cursor to populate a spinner

I'm having a problem populating my spinner with data from my SQLite database. Here's the code from my Activity. The Activity crashes with an Unable to start Activity ComponentInfo error where ...
3
votes
4answers
9k views

Android Spinner Selected Item

I am populating a spinner from the database like this // Populating the City Spinner Cursor cities = db.cityList(); startManagingCursor(cities); // create an array to specify which ...
0
votes
1answer
2k views

Android array list from database

I wanna create an array of cities that are stored in the database Cities Table CREATE TABLE cities (_id INTEGER PRIMARY KEY AUTOINCREMENT, name TEXT); Querying for City List // City List public ...
1
vote
1answer
317 views

Android - Spinner's data disappears

I have an Android activity which displays a spinner populated with data from a database. The onCreate() is listed here: @Override public void onCreate(Bundle savedInstanceState) { ...
0
votes
2answers
1k views

Storing selected spinner item in database table - Android

So my situation is this. I have two tables. A main table where data is added using a form, this form has a spinner which is powered from the second table (this part is working correctly). I then want ...
1
vote
1answer
242 views

How can I get the position of a row in a dataset in order to set the selected item in an Android Spinner?

I have a Spinner that's populated using a cursor containing data from a database. It appears that it's impossible to set the selected item in the spinner using the value of the ID column of a row. ...