I have created a table named Blood Group into my SQLiteDatabase. I have retrieved all data from table into logcat
But I am not able to bind the data into the Spinner.
ArrayAdapter spinnerAdapter = new ArrayAdapter(this,
android.R.layout.simple_spinner_item, yourListFromDB);
spinnerAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
yourSpinner.setAdapter(spinnerAdapter);
Finally I found the alternative answer: