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 }