Answers for "android studio remove bottom navigation bar"

0

remove elivation on android studio bottom navigation bar

<android.support.design.widget.BottomNavigationView
    android:id="@+id/bottom_navigation"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:background="@android:color/white"
    app:elevation="0dp"
    app:menu="@menu/bottom_navigation_main" />
Posted by: Guest on August-16-2021
-2

android studio remove navigation bar

protected void onResume() {
        super.onResume();
        View decorView = getWindow().getDecorView();
        // Hides the status and navigation bar until the user clicks
        // on the screeen.
        int uiOptions = View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
                | View.SYSTEM_UI_FLAG_FULLSCREEN;
        decorView.setSystemUiVisibility(uiOptions);
Posted by: Guest on April-07-2020

Code answers related to "android studio remove bottom navigation bar"

Code answers related to "Swift"

Browse Popular Code Answers by Language