我想将autocomplete
中ToolBar
的数据传递给其他Activity
。
这是我的代码,我将intent
从ToolBar
传递给其他Activity
。
int buttonMap = item.getItemId();
if (buttonMap == R.id.actionBar_map) {
Intent intent = new Intent(this, Maps.class);
intent.putExtra("cityName", mAutoCompleteTextView.getText().toString());
startActivity(intent);
return true;
这是我来自其他Activity
的代码:
if(getSupportActionBar()!=null){
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
getSupportActionBar().setDisplayShowHomeEnabled(true);
getSupportActionBar().setTitle("My Trip To " + getIntent().getExtras().getString("cityName"));
Activity
显示ToolBar
中的城市名称:
这是数据未传递的Activity
:
我希望这个城市的名字出现在这里。