Tagged Questions
0
votes
1answer
42 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
1answer
74 views
Populate spinner from database with previous values
I have an activity with edittexts and spinners. I set the values in each one and then save them in a db. Now in a second activity with the exact same xml file i want to automatically populate them all ...
1
vote
0answers
66 views
android.database.sqlite.SQLiteCursor@
I got that Error. How could I eliminate the android.database.sqlite.SQLiteCursor@ instead of INTEGER value alone? And how could I get the integer Value from my consumer table which is AccountID and ...
-1
votes
1answer
79 views
Spinner will display data on same activity each time [closed]
I want information from my database to be called to theses box's. So if i pick a item from the spinner list the spinner will close and the information will be called to the little text box's. The ...
0
votes
1answer
204 views
update My Spinner from SQlite Database
I FOUND A SOLUTION FOR RESTORING MY VALUES, SEE MY NEW VERSION of populateFields()
Okay so I have been reading through all the Spinner and SQlite posts on here and cannot seem to find a good answer ...
0
votes
2answers
119 views
How to update the database in spinner when a record is inserted?
Here is the code which i use to load the spinner in the .MainActivity.java
public void spin() {
{
try{
SQL db = new SQL(getBaseContext());
db.open();
...
0
votes
1answer
192 views
Android - When we select checkbox , Spinner need to change
I have checkBox and Spinner. If the checkbox is checked, then spinner should call the database and get the values from there, otherwise default value.
My Problem is :
If CheckBox is checked, Spinner ...
0
votes
1answer
86 views
Try to select an option in a spinner from the db
I am populating several fields based on data from the my db. I am having trouble figuring out how to use the data from the db to select an item that is in the spinner. The Spinner has four options ...