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.
在不修改xml中的android:label="@string/app_name" & string name="app_name"的情况下,我可以在OnCreate部分灵活设置java中的应用名称吗?谢谢!!
我可以在 OnCreate 部分的 java 中灵活设置应用程序名称吗?
不,你不能,我相信防止那些可能由运行时更改应用程序名称产生的混乱是件好事。
不,您的应用名称是一般设置,而不是与活动相关联的名称。
暂时不可能。它是AndroidManifest.xml文件中的固定字符串。
AndroidManifest.xml
如果你想改变标题,你可以这样做:
getWindow().setTitle("Your Title");