繁体   English   中英

如何在底部导航栏

[英]how to navigation bar at the bottom

我已经使用此代码绑定..

<android.support.design.widget.BottomNavigationView
            android:id="@+id/navigation"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="bottom"
            android:background="?android:attr/windowBackground" />
//parent views are Relative Layout then ScrollView

它随着屏幕的滚动而移动,但我希望导航栏被固定,即使在滚动屏幕后,任何人都可以帮助我吗?? 就像 Messenger 应用程序一样,我希望它得到修复! 信使

- 你可以使用以下代码或类似的东西......

<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<ScrollView
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

    </RelativeLayout>
</ScrollView>
 <com.google.android.material.bottomnavigation.BottomNavigationView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"/>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
 <android.support.design.widget.BottomNavigationView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:background="?android:attr/windowBackground"/>

我知道了! 它是固定的,不影响滚动根布局是相对布局。 感谢您的帮助 Amit Ghoswani 先生

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM