I have a problem with android:prompt for counter. I used this code in an XML file, but it does not 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 also does not work:
spinner.setPrompt("Select club");
While I used the second case, I did not use android:prompt ; in other words, I tried them individually. Can someone help me?
android android spinner
Heisenberg
source share