Durum Android 4.0 Bar and manifest.xml dosyasında başvurunun temasını ayarlayarak
Alt gizleyin.
android:theme="@android:style/Theme.Holo.NoActionBar.Fullscreen"
VEYA etkinliğin onCreate() yönteminde JAVA kodunu yazarak
- .
@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // If the Android version is lower than Jellybean, use this call to hide // the status bar. if (Build.VERSION.SDK_INT < 16) { getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN); } setContentView(R.layout.activity_main); }
etkinlik'ın onCreate() metodu içinde JAVA kodunu yazarak durumu Android 4.1 Bar and
Yükseköğretim gizleyin.
View decorView = getWindow().getDecorView();
// Hide the status bar.
int uiOptions = View.SYSTEM_UI_FLAG_FULLSCREEN;
decorView.setSystemUiVisibility(uiOptions);
// Remember that you should never show the action bar if the
// status bar is hidden, so hide that too if necessary.
ActionBar actionBar = getActionBar();
actionBar.hide();
http://stackoverflow.com/questions/33692388/android-remove-actionbar-title-keeping-toolbar-menu/33692402#33692402 –
Durum çubuğu Ben kaldırılan istediğini değil, eylem bar . – user5495265