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.
我想在 android 4.2.2 中隐藏系统栏(返回、主页和最近的应用程序)上可用的图标。
有人可以告诉我如何实现。
注意:只想隐藏图标而不是整个系统栏。
提前致谢。
试试这个:
if (Build.VERSION.SDK_INT > Build.VERSION_CODES.HONEYCOMB) { getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LOW_PROFILE); // This will make the nav buttons into little dots }