📌  相关文章
📜  如何从 android 中的另一个活动访问微调器 - 无论代码示例

📅  最后修改于: 2022-03-11 14:55:46.591000             🧑  作者: Mango

代码示例1
First save the position of selected data from spinner in a String variable,

int positionOfSelectedDataFromSpinner;

spinner.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {

    @Override
    public void onItemSelected(AdapterView parent, View view, int position, long id) {
       positionOfSelectedDataFromSpinner= position;
}
Then on button click send intent to Another activity with putExtra

Intent i = new Intent (this, activity2.class);

i.putExtra("position", positionOfSelectedDataFromSpinner);
startActivity(i);
get int from getIntent in another activity

Intent intent = getIntent();
int positionToShowToSpinner = intent.getStringExtra("position");
then set the position to spinner

spinner.setSelection(positionToShowToSpinner);
I think this my solve your problem.