我试图在第二个活动textview中传递来自两个微调器的选定项目,它适用于一个微调器,但是当我添加第二个应用程序时停止工作。 这是我的第一个活动的代码:
public void addListenerOnButton() {
final Context context = this;`enter code here`
button = (Button) findViewById(R.id.button4);
s2 = (Spinner) findViewById(spinner2);
s1=(Spinner) findViewById(R.id.spinner1);
button.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
Intent intent = new Intent(getApplicationContext(), Activity2.class);
Bundle b = new Bundle();
b.putString("rg", s2.getSelectedItem().toString());
b.putString("tpi",s1.getSelectedItem().toString());
intent.putExtras(b);
startActivity(intent);
}
})
这是我的第二项活动代码:
Bundle b = getIntent().getExtras();
registracija.setText(b.getCharSequence("rg"));
vreme.setText(b.getCharSequence("tpi"));