Kiedy pierwszy raz uzupełniałam dropdown danymi dokumentacja kazała mi stworzyć adapter, a następnie podpiąć go pod dropdown. Ale można to zrobić inaczej 🙂
Dla dropdowna ze statystykami mam zadeklarowaną listę wartości. Aż dwie: obiady i składniki:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<string-array name="statistics_items"> | |
<item>@string/dinners</item> | |
<item>@string/ingredients</item> | |
</string-array> |
Pierwotna wersja kodu, który populował wartości do dropdowna wyglądała tak:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Spinner spinner = (Spinner) findViewById(R.id.statistics_spinner); | |
ArrayAdapter<CharSequence> adapter = ArrayAdapter.createFromResource(this, R.array.statistics_items, android.R.layout.simple_spinner_item); | |
adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item); | |
spinner.setAdapter(adapter); |
Odnalezienie dropdowna po id, stworzenie adaptera, przekazanie mu wartości, ustawienie layoutu dla dropdowna, podpięcie adaptera pod dropdown, ale przecież ja w sumie chcę tylko wyświetlić te elementy na liście… Okazało się, że można to po prostu zrobić w xml-u.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Spinner | |
android:id="@+id/statistics_spinner" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:layout_marginEnd="20dp" | |
android:entries="@array/statistics_items"/> |
I o 3 linijki kodu mniej 😉