-2
votes
0answers
23 views

Pick up value of a spinner and search a database [closed]

I'm in the final stage of my application, I just need a method to catch a spinner and do a search on my database. Detail spinner populated with this ArrayAdapter in my MainActivity. Another grab ...
0
votes
2answers
48 views

Set selected spinner item based on a name, not a position in Android

I have three spinners in an activity where I can edit information that the user has already entered into a database. I have been able to set the text of a textfield by querying my SQLite database to ...
0
votes
1answer
45 views

Can't fetch data from sqlite to spinner in alert dialog

I hope somebody can help me find out why the following code does not work with me. I have a method to fetch all names from database table, and I use List to get them. this is my code to fetch them ...
0
votes
2answers
267 views

how to store the selected value of a spinner in sqlite database?

i want to store the selected value of a spinner in sqlite database i am giving spinner value through array adapter following is my code for spinner ArrayList<String> incorparray = new ...
0
votes
2answers
43 views

Android: Failed to load activity

I am very new to android so dont blame me for my mistakes and if you can try and help me. My application starts ok, but as soon as I try to switch to another activity it says that my app has ...
0
votes
1answer
101 views

Data Not Showing from database to Spinner

I am developing a small app in which i have to used a spinner with database. I am using spinner.setOnItemSelectedListener(this); loadSpinnerData(); My loadSpinnerData() is below ...
0
votes
0answers
49 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
0answers
478 views

How to save a selected item of spinner in SQLite database?

I made an application with an SQLite database. The user fills in some fields and the data he fills in is saved in a SQLite database. I made a spinner to select the string 'dag', but I don't know how ...
0
votes
1answer
73 views

How can i send all the fields from database in the java file to another java file?

i have an simple car database like this: db.addCar(new Car("Alfa Romeo","Giulietta","1.4 TB Distinctive","Benzine","1.4","120","2012","5","1465","4351","54000")); db.addCar(new ...
0
votes
1answer
125 views

How to get values from a spinner populated from a cursor

I've populated my spinner as this: DatabaseConnector dbConnector = new DatabaseConnector(this); dbConnector.open(); Cursor c = dbConnector.raw("SELECT _id, nombrecasa FROM casa"); ...
2
votes
1answer
169 views

How to set the order data in a Spinner

I am using a number of Spinners for user to input data which is then saved into SQLite database. Each Spinner is filled with data from the database tables. I want to control the order in which the ...
1
vote
0answers
307 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); ...
0
votes
0answers
88 views

eclipse android: Button store only 1 value that can change

I'm creating an application with several spinner options to select things. And now I want to create a new spinner so you can select your intent. The problem is not the spinner, but to make the ...
0
votes
0answers
90 views

How to sort data in a Spinner

I have a number of spinners that are populated from database tables. I would like to control how the data is sorted in the spinner as in one example I have data in the form of: ...
0
votes
1answer
202 views

assign data list to spinner from Web-service in android

I am getting data from database through web-service. I have to set the data to spinner. Is it possible to assign data to spinner from DB? If possible how it is? Please help me. thanks in ...
0
votes
0answers
69 views

Does not show ArrayList objectes when onItemSelected in Spinner

I have taken objects to a ArrayList from a remote database as JSONObjects. I was able to populate the results in a spinner. But the problem is when I select a list item even the ...
1
vote
2answers
399 views

How to see database values inside the spinner?

I have a spinner and a database so when i click the spinner i want to show the value(name) of the contacts in it but in a simple code. so they are separetated javas and xml layouts the spinner is in ...
0
votes
4answers
237 views

how to show my contacts database value in my spinner?

In my layout xml I have a spinner and in my java I have a database with contacts and some values on it so I want to know how I send or put these values from the database in the spinner so when I click ...
0
votes
2answers
892 views

Issues with displaying data from SQLite database into spinner [Android]

I need help in how to retrieve data from SQLite database and put into spinner. Plus, I can't open my android app and the LogCat says "No such column:name". I have even check with my DBAdapter classes ...
1
vote
1answer
114 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
198 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 ...
2
votes
1answer
367 views

How to get the value of an item from database and set it as the spinner value

I have a database and the database populates a listview. when i long press a list item from the listview i get a context menu where i have the option to edit. When the edit option is clicked i open an ...
0
votes
0answers
868 views

set value spinner from database android

Hi all i want to set default value spinner from database.. so i have data in database and value from this database want to set value default in spinner.. i have code like this private void load() { ...
0
votes
1answer
773 views

Fill each spinner row with two values from database

I have a spinner currently being filled with one column (name) from a database. I would like to change this to have each spinner row displaying the name, a space and an Id from the same table. This is ...
0
votes
1answer
468 views

android database and spinner

I have three spinners populated from database. table 1(spinner 1) 1 staff 2 student 3 subjects table 2(spinner 2) 1 1 raja(staff) 1 2 stephen(staff) 1 3 mohammed(staff) 2 4 ...
0
votes
1answer
308 views

Populate spinner with a database column, first row disgarded

db.open(); cursor = db.getAllRecords(); int i = 0; for(cursor.moveToFirst(); cursor.moveToNext(); cursor.isAfterLast()) { spinnerItems[i] = ...
4
votes
2answers
710 views

Android: value of one spinner depends on value of other spinner

I have a problem on Android Spinner.In my application I created two Spinner on main layout. 'State' Spinner and 'District' Spinner. All the data on Spinner are stored in SQLite database. I want do ...
2
votes
0answers
127 views

spinner from a database within a map

I'd like to ask if you have any useful tutorial on how to create a spinner that contains list of items from a database in a map activity class? Thank you
0
votes
2answers
555 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
2answers
322 views

Null Pointer Exception when populate a Spinner from SQLite.[Java Android]

My goal is to make an application called "Shopping list".I have 3 tabs , first called: "View list" , second one is : "Add Market" and last one : "Add Product".I have 2 spinners on first and last tab, ...
0
votes
2answers
745 views

How to save the spinner selected value in android?

I am trying to save spinner selected value, but i am getting like below i shown when i retrieve the details. Anybody know what is the problem. Spinner:android.widget.Spinner@43e807a0
0
votes
0answers
436 views

How to save the spinner selected value to database in android?

I am trying to get the database values to the spinner, this works fine. Also i am saving the spinner selected value to the another database. This is the code for getting data to spinner from database. ...
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 ...
1
vote
1answer
592 views

Two spinners in android app

I have problem with my spinners, in my app are two spinners which gets data from database, when i choose one option from first spinner, i want to remove this option from second spinner, and add ...
0
votes
0answers
1k views

fill spinner with values of database - android

i try to put some entries of my db into a spinner. i googled and found some code. my problem: it doesn't work for me. Any ideas what i do wrong? Cursor myCursor = myDB.rawQuery("SELECT _id, ...
3
votes
4answers
8k 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 ...
1
vote
1answer
466 views

Use database with Iphone like spinner with android

I am new to developing anything and want to make an Iphone like spinner that pulls information from database and return info contained in database I have checked all the spinners out on How can we ...
1
vote
2answers
933 views

Insert data from spinner into database

HI. I have for instance the following code. private EditText etAddSomething; private EditText etAddSomething2; private Spinner etAddSomethin3; private String str_something; private String ...
0
votes
1answer
569 views

show an item from editext to spinner and save to db

I want to show an item from editext to spinner and save to db... how to store item in the db... my code : spinner populating final DBAdapter db = new DBAdapter(this); db.open(); Spinner spin = ...
0
votes
2answers
654 views

how to make a toast for spinner database in android

i populate a spinner from database.... now i need to make a toast for spinner..... how to do that My code : Spinner spin = (Spinner) findViewById(R.id.spinner1); AdapterCountries = new ...
1
vote
1answer
4k views

populate a spinner from database

hi i tried to populate a spinner from DB.... my code: String MY_DATABASE_NAME = "testDB"; String MY_DATABASE_TABLE = "testDBrecords"; TextView resultsView; Spinner spinner; ...
0
votes
1answer
488 views

How should I go about saving the selected value from a spinner to a database?

Basically, I'm creating an application for FIRST robotics that is like a notepad that assists with the task of scouting. So far I've been able to save the name of the team and the comments on that ...
0
votes
2answers
502 views

Update Spinner items to the database.?

i have a spinner that loads items from the SQLite database. it works fine. then i have a edittext to get the selected spinner item to that edittext. its also woks. then i want to change the edit text ...
0
votes
1answer
170 views

How can I get changes of a Spinner?

I am working on an app, which has a spinner in two activities. In the first activity the user can edit the spinner item and save the value. I used an ArrayAdapter and a onItemSelectedListener to store ...
0
votes
1answer
5k views

Dynamic Spinner Using SQLite Database

I've been able to successfully link two spinners to a database using a SimpleCursorAdapter. But, I need to make the second spinner selection dependant on the first spinner selection. Here is how I ...
0
votes
1answer
561 views

Help with showing data on spinner

i would like to show data from my database onto a spinner. how would that be possible? As there is an null error in my logcat. Booking.java public class Booking extends Activity { private ...
0
votes
1answer
79 views

Question with android

How would i make what i selected in the spinner appear in a textview when i choose that selection? The data would be taken from the database. My Booking.java package one.two; import ...
10
votes
5answers
5k views

setSelection on Spinner based on rowId

I have a Spinner View that's populated through a SimpleCursorAdapter. Based on the selection I need to save the rowid in the entry database (position won't work because things can be added and deleted ...
5
votes
3answers
19k views

Populating Spinner From SQLite Database Android

I'm attempting to make a dynamic drop down that will be filled by a SQLite table. I have a Cursor object which I can pull the data I need from. I've been able to accomplish loading the values into ...