This was my first app for android and i is an Note App. But now i am encountering an problem with an spinner.
In one of my screens i have an Spinner with which the user could choose from the given categories.
The problem is now that there are the right amount of items in the spinner and notes get assigned to the right categories but instead of the category name there are only black bars in the spinner.
Maybe some of you have had the same problem or know how to deal with it. Below is my code how i create and fill the spinner.
Spinner in layout.xml:
<Spinner
android:id="@+id/note_cat_value_dd"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/note_name_value_tf"
android:layout_alignParentRight="true"
android:layout_below="@+id/note_name_value_tf"
android:prompt="@string/note_spin_prompt"
android:textSize="12sp" />
Filling the spinner:
Cursor cat = connect.query("category", new String[] {"_id", "name"}, null, null, null, null, null);
ArrayList<String> options=new ArrayList<String>();
cat_spin = (Spinner) findViewById(R.id.note_cat_value_dd);
while(cat.moveToNext())
options.add(cat.getString(1));
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,android.R.layout.simple_spinner_item,options);
cat_spin.setAdapter(adapter);
And there is no other code that contains the spinner besides one time where i get the selected item with "cat = cat_spin.getSelectedItem().toString();".