如何通过图标ToolBar将数据传递给Activity

时间:2017-09-17 21:26:30

标签: android android-intent

我想将autocompleteToolBar的数据传递给其他Activity

这是我的代码,我将intentToolBar传递给其他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 that Data is passing

这是数据未传递的Activity

the second <code>Activity</code> from icon on <code>ToolBar</code> and I need that name of the city to appear

我希望这个城市的名字出现在这里。

0 个答案:

没有答案