I have a problem with android:prompt
for a spinner. I used this code in the XML file but it doesn't work:
<Spinner
android:id="@+id/spinner"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="120dp"
android:prompt="@string/club_type">
</Spinner>
I also tried to use this code in my main activity but this doesn't work either:
spinner.setPrompt("Select club");
While I was using the second case I didn't use android:prompt
; in other words, I tried them individually. Could someone help me?