LinearLayout 和 NestedScrollView 问题
Posted
技术标签:
【中文标题】LinearLayout 和 NestedScrollView 问题【英文标题】:LinearLayout and NestedScrollView problem 【发布时间】:2021-04-26 22:22:24 【问题描述】:我想如何使用 NestedScrollView,顶部的工具栏视图和底部的底部视图视图。顶视图和底视图 工具栏和底视图必须始终在原位。
如何为任何设备实现此结果?感谢您的任何回答,谢谢。
总是这样:
这是我的代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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_
android:layout_
android:orientation="vertical">
<!--This is top-->
<androidx.appcompat.widget.LinearLayoutCompat
android:id="@+id/toolbar"
android:layout_
android:layout_
android:background="@color/colorPrimary">
<!--.........................-->
</androidx.appcompat.widget.LinearLayoutCompat>
<androidx.core.widget.NestedScrollView
android:layout_
android:layout_>
<LinearLayout
android:layout_
android:layout_
android:orientation="vertical"
android:background="@color/colorGreyFragment">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_
android:layout_>
</androidx.constraintlayout.widget.ConstraintLayout>
</LinearLayout>
</androidx.core.widget.NestedScrollView>
<!--This is bottom-->
<androidx.appcompat.widget.LinearLayoutCompat
android:id="@+id/bottom_buttons_group"
android:layout_
android:layout_
android:orientation="horizontal"
android:gravity="center"
android:background="@color/colorWhite">
<!--..............................-->
</androidx.appcompat.widget.LinearLayoutCompat>
</LinearLayout>
【问题讨论】:
【参考方案1】:你可以这样做,
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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_
android:layout_
android:orientation="vertical">
<!--This is top-->
<androidx.appcompat.widget.LinearLayoutCompat
android:id="@+id/toolbar"
android:layout_
android:layout_
android:background="@color/colorPrimary">
<!--.........................-->
</androidx.appcompat.widget.LinearLayoutCompat>
<androidx.core.widget.NestedScrollView
android:layout_
android:layout_weight="1"
android:layout_>
<LinearLayout
android:layout_
android:layout_
android:background="@color/colorGreyFragment"
android:orientation="vertical">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_
android:layout_></androidx.constraintlayout.widget.ConstraintLayout>
</LinearLayout>
</androidx.core.widget.NestedScrollView>
<!--This is bottom-->
<com.google.android.material.bottomnavigation.BottomNavigationView
android:layout_
android:layout_/>
</LinearLayout>
我已经用BottomNavigationView
替换了底部的线性布局,如果你想要一些其他的东西,你可以在那里替换。
【讨论】:
人变就够了。谢谢 没有。你的回答有帮助 我希望你会感谢你的努力以上是关于LinearLayout 和 NestedScrollView 问题的主要内容,如果未能解决你的问题,请参考以下文章
LinearLayout 和 CameraSource 不填满屏幕
如何将listview和recyclerview放入linearlayout
如何使用android中的拖放框架从一个LinearLayout切换到另一个LinearLayout