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.
如何隐藏活动中的所有内容,如电池、信号和时间。我正在使用以下代码隐藏标题:
requestWindowFeature(Window.FEATURE_NO_TITLE);
但是其余的东西隐藏呢?怎么做?
试试这个:
requestWindowFeature(Window.FEATURE_NO_TITLE); getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);