ここでjalopabaによって示されているように、私はすでに新しいクラスを作成しました。スピナーの選択された値をどのように取得しますか?
public class MyItemSelectedListener implements OnItemSelectedListener {
public void onItemSelected(AdapterView<?> parent, View view, int pos, long id) {
String selected = parent.getItemAtPosition(pos).toString();
}
public void onNothingSelected(AdapterView parent) {
// Do nothing.
}
}
これを元のクラスのスピナーに登録します。
spinner.setOnItemSelectedListener(new MyOnItemSelectedListener());
ただし、選択した文字列を使用して、同じクラスのコードを入力することはまだできません。
textView.setText(selected);
私はとにかくこのAndroidに慣れていないので、この質問はあなたの何人かにはあまりにもダミーかもしれません