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.
我想在我的应用程序中隐藏 app_name。我怎样才能做到这一点?
谢谢
添加这个 onCreate 方法
requestWindowFeature(Window.FEATURE_NO_TITLE);
在要隐藏它的活动的清单文件中,添加以下内容:
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"