0

請幫我設置底部導航欄位置固定在底部, ,因爲我在輸入editText字段時遇到問題,底部導航欄向上移動並覆蓋其他領域如何設置android底部導航欄位置固定在android

代碼:

<RelativeLayout 
xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:app="http://schemas.android.com/apk/res-auto" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"> 

<!---  --> 
<android.support.design.widget.BottomNavigationView 
     android:id="@+id/bottom_navigation" 
     android:background="#FF6936C3" 
     android:layout_alignParentBottom="true" 
     android:layout_width="match_parent" 
     android:layout_height="48dp" 
     android:layout_gravity="start" 
     app:itemIconTint="@android:color/white" 
     app:itemTextColor="@android:color/white" 
     app:menu="@menu/bottom_nav_items" /> 
</RelativeLayout> 
+0

https://blog.stylingandroid.com/bottomnavigationview/ – gaurang

回答

0
<LinearLayout> 
    <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" 
    app:menu="@menu/navigation" /> 
</LinearLayout> 

您可以定義線性佈局,並將其底部導航放置在其中,並將其重力設置爲底部。 您可以找到其他細節:https://developer.android.com/reference/android/support/design/widget/BottomNavigationView.html

0

嘗試,包括該代碼在你的清單

<activity android:name=".YourActivity" 
     android:windowSoftInputMode="adjustNothing"> 
+0

非常感謝公司對我的工作 –

0
android:layout_gravity="start" 

改變它如下:

android:layout_gravity="bottom" 

它不是由這個解決那麼問題出在其他代碼。目前還不清楚你是否已經告訴了編輯文本,但是它的位置有些不匹配。

希望,你明白

相關問題