gpt4 book ai didi

android - 如何在 Intent 中设置 Activity 标题?

转载 作者:行者123 更新时间:2023-11-29 14:37:30 25 4
gpt4 key购买 nike

TabHost 中,我们可以执行 getActionBar().setTitle("ACTIIVTY TITLE")

但是在 intent 中呢?

有没有办法在intent中设置标题?

代码

  Intent i = new Intent(MenuActivity.this, DrawerListActivity.class);
startActivity(i);
Toast.makeText(getBaseContext(), "RF number: " +
KEY_RFnumber, Toast.LENGTH_SHORT).show();

最佳答案

主 Activity 类

public void send(View view) {
Intent intent = new Intent(this, DrawerListActivity.class);
String message = "Drawer Title";
intent.putExtra("key", message);
startActivity(intent);
}

DrawerListActivity.class,在onCreate()

String message = getIntent().getStringExtra("key").toString(); // Now, message has Drawer title
setTitle(message);

现在,将此消息设置为标题。

关于android - 如何在 Intent 中设置 Activity 标题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28390374/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com