1. 显示标题栏
新版Android Studio(2.24.1.2)创建的Empty Views Activity没有标题栏
解决办法:修改res/values/themes
<style name="Base.Theme.MyApplication" parent="Theme.Material3.DayNight.NoActionBar">
把最后的 ".NoActionBar"去除就可以了
<style name="Base.Theme.MyApplication" parent="Theme.Material3.DayNight">
结果:
2.改变标题
2.1 找到文件AndroidManifest.xml,修改android:label
2.2 在MainActivity.java文件中,使用函数setTitle修改
如果两个同时使用,第二个优先级更高