Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望使用从本地 sqlite 数据库中获取的常量值设置每个活动的标题。该值是用户的用户名。
有没有办法设置一次标题并影响所有活动?还是我必须手动设置每个活动的标题?
如果有办法,它是如何实现的?
一种明显的方法是创建自己的MyActivity类扩展Activity,并在onCreate()其中调用setTitle()。MyActivity然后从而不是扩展您的所有活动Activity并调用super.onCreate().
MyActivity
Activity
onCreate()
setTitle()
super.onCreate()