Mam 5 Spinnerów. Aby to podsumować.
To jest Spinner w xml
<Spinner
android:id="@+id/text_interested"
android:layout_span="2"
android:layout_width="wrap_content"
android:layout_height="60px"
android:entries="@array/interestedarrays"
android:prompt="@string/interestedprompt" />
To jest Spinner w Javie
submitbtn.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
interested.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
public void onItemSelected(
AdapterView<?> adapterView, View view,
int i, long l) {
interesting = interested.getItemAtPosition(i).toString();
}
public void onNothingSelected(
AdapterView<?> adapterView) {
}
});
}
});
Wyjaśnienie tutaj:
Strona ma przycisk. Po naciśnięciu ten przycisk odczyta dane z pokrętła. Sprawdziłem wyjście tym
System.out.println(interested.getItemAtPosition(i).toString());
Nic mi to nie dało, nawet zerowe.
Jak pobrać wartość i ją napisać?