android页面布局:如何使LinearLayout层占满页面,但不覆盖底部菜单栏?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android页面布局:如何使LinearLayout层占满页面,但不覆盖底部菜单栏?相关的知识,希望对你有一定的参考价值。

如题

第一种:给底部菜单栏设置具体dp值,然后LinearLayout margin_buttom那个dp值
第二种:LinearLayout外面在放一个LinearLayout 方向是vertical,然后把你要放的Linearlayout和菜单栏一起放进去,菜单栏wrap_content,LinearLayout match_parent
建议使用第一种
参考技术A <LinearLayout
android:layout_heigth = "0dp"
android:layout_weight = "1">

当softKeyBoard隐藏按钮和其他元素时如何使布局可滚动[ANDROID]

【中文标题】当softKeyBoard隐藏按钮和其他元素时如何使布局可滚动[ANDROID]【英文标题】:How make layout scrollable when softKeyBoard hides buttons and other elements [ANDROID] 【发布时间】:2022-01-09 23:43:42 【问题描述】:

我的目标是制作带有页脚文本的登录用户界面,而且页面应该是可滚动的,只要内容不会显示在视图上。

我在布局中添加了滚动视图,但是当键盘出现时,滚动不起作用任何建议?那些不起作用,我不希望那个按钮出现在键盘上方

android:windowSoftInputMode="stateHidden|adjustPan" android:windowSoftInputMode="stateHidden|adjustResize"

<layout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto">
    
        <androidx.constraintlayout.widget.ConstraintLayout
            android:layout_
            android:layout_
            tools:context=".auth.AuthFragment">
    
            <androidx.core.widget.NestedScrollView
                android:id="@+id/scroll"
                android:layout_
                android:layout_
                app:layout_constraintBottom_toTopOf="@id/footer">
    
                <androidx.constraintlayout.widget.ConstraintLayout
                    android:id="@+id/authConstraint"
                    android:layout_
                    android:layout_>
    
    
                    <com.google.android.material.textfield.TextInputLayout
                        android:id="@+id/usernameInputLayout"
                        android:layout_
                        android:layout_>
    
                        <com.google.android.material.textfield.TextInputEditText
                            android:id="@+id/usernameInputEditText"
                            android:layout_
                            android:layout_/>
    
                    <com.google.android.material.button.MaterialButton
                        android:id="@+id/uSubmit"
                        android:layout_
                       app:layout_constraintTop_toBottomOf="@+id/usernameInputLayout" />
    
                    <com.google.android.material.button.MaterialButton
                        android:id="@+id/uRegistration"
                        android:layout_
                        android:layout_
                        android:backgroundTint="#2C2C2E"
                        android:text="SIGNIN"
                        android:textSize="30sp"
                        app:layout_constraintBottom_toBottomOf="parent"
                        app:layout_constraintEnd_toEndOf="@+id/uSubmit"
                        app:layout_constraintStart_toStartOf="@+id/uSubmit"
                        app:layout_constraintTop_toBottomOf="@+id/uSubmit" />
                </androidx.constraintlayout.widget.ConstraintLayout>
            </androidx.core.widget.NestedScrollView>
    
            <FrameLayout
                android:id="@+id/footer"
                android:layout_
                android:layout_
                android:background="@color/black"
                app:layout_constraintBottom_toBottomOf="@+id/scroll"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintStart_toStartOf="parent">
    
                <androidx.constraintlayout.widget.ConstraintLayout
                    android:layout_
                    android:layout_>
                    <TextView
                        android:layout_
                        android:layout_
                </androidx.constraintlayout.widget.ConstraintLayout>
            </FrameLayout>
    
        </androidx.constraintlayout.widget.ConstraintLayout>
    </layout>

【问题讨论】:

【参考方案1】:
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_
    android:layout_
    android:orientation="vertical">

    <androidx.core.widget.NestedScrollView
        android:layout_
        android:layout_
        android:layout_weight="1"
        android:fillViewport="true">

           <androidx.constraintlayout.widget.ConstraintLayout
               android:layout_
               android:layout_>

              <View
                 android:id="@id/view_1"
                 ...
                 app:layout_constraintTop_toTopOf="parent" />

              <View
                 android:id="@id/view_2"
                 ...
                 app:layout_constraintTop_toBottomOf="@id/view_1" />

              <View
                 android:id="@id/view_3"
                 ...
                 app:layout_constraintTop_toBottomOf="@id/view_2" />

              <View
                 android:id="@id/view_4"
                 ...
                 app:layout_constraintTop_toBottomOf="@id/view_3"
                 app:layout_constraintBottom_toBottomOf="parent" />

           </androidx.constraintlayout.widget.ConstraintLayout>
    </androidx.core.widget.NestedScrollView>
</LinearLayout>

确保在所有视图(父顶部和父底部)之间都有约束。 从我的示例中,您可以看到约束 PARENT_TOP PARENT_BOTTOM

【讨论】:

感谢 Dmytro,感谢您的回复,但它不起作用。当键盘打开时,它会向下滚动一点,我检查了小分辨率设备,当视图超出显示滚动时,它会按预期工作。问题是键盘打开时:(并且它隐藏了一些视图 尽量不要在 android manifest 中使用任何带有活动的标志

以上是关于android页面布局:如何使LinearLayout层占满页面,但不覆盖底部菜单栏?的主要内容,如果未能解决你的问题,请参考以下文章

android页面布局:如何使LinearLayout层占满页面,但不覆盖底部菜单栏?

Android五大布局——LinearLayoutRelativeLayout

当softKeyBoard隐藏按钮和其他元素时如何使布局可滚动[ANDROID]

如何使线性布局坚持到 Android 中的 ImageView?

使用Android Navigation Component,如何使actionBar透明并在单个Fragment中使布局全屏?

如何在 Android 上使图像透明?