としてyearNameにスピナーの値を格納することができます。
public static void onYearSelect(View view) {
Spinner yearSelector;
yearSelector = (Spinner) view.findViewById(R.id.year_submit);
yearName = yearSelector.getSelectedItem().toString();
}
The view which contains your layout data
。
この関数を呼び出すと、onYearSelect(rootView)
がここに追加されます。rootView
にレイアウトビューがあります。
EDIT 1:
ビューはここで何ですか?
A View in Android is a widget that displays something. Buttons, listviews, imageviews, etc. are all subclasses of View. When you say "change view" I assume you mean change the layout by using setContentView(). This usually only needs to be done once per activity. An Activity is basically what you are referring to as a screen.
あなたはhere詳細を読むことができます。
私はアンドロイドスタジオで初心者です....あなたはこれでビューのビューを教えてください! –