NestedScrollView设置固定屏幕大小

时间:2018-07-13 12:56:28

标签: android xml android-recyclerview android-nestedscrollview

我们要去:)我有一个NestedScrollView的{​​{1}}。在此NSV中,我具有带有两个RecyclerViews的LinearLayout。接下来的问题是,我无法为这两个回收站设置固定大小,并且不需要NSV滚动=>我需要NSV高度= [屏幕大小]-[折叠的工具栏高度]。这就是为什么我的回收商显示所有物品,但我需要屏幕高度尺寸的一半。

CollapsedToolbar

我该如何解决?

3 个答案:

答案 0 :(得分:0)

从不使用可滚动的。 1.用不同类型的视图创建1个回收站视图。 2.在其上添加layout_behavior。

答案 1 :(得分:0)

输出

answer

尝试一下

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.NestedScrollView 
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:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:scrollbars="none"
android:fillViewport="true"
app:layout_constraintBottom_toTopOf="@+id/guideline"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="1.0">


    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/colorPrimaryDark"
        android:orientation="vertical">

        <android.support.v7.widget.RecyclerView
            android:id="@+id/recycler_asks"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:scrollbars="none"
            android:layout_weight="1"
            app:layoutManager="android.support.v7.widget.LinearLayoutManager"
            app:layout_constraintBottom_toTopOf="@+id/divider"
            app:layout_constraintTop_toTopOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            android:layout_marginBottom="@dimen/small_margin"
            android:layout_above="@+id/divider"
            android:background="@color/colorPrimary"/>

        <View
        android:id="@+id/divider"
        android:layout_width="match_parent"
        android:layout_height="1dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"/>

        <android.support.v7.widget.RecyclerView
        android:id="@+id/recycler_bids"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:scrollbars="none"
        android:layout_weight="1"
        app:layout_constraintTop_toBottomOf="@+id/divider"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layoutManager="android.support.v7.widget.LinearLayoutManager"
        android:layout_below="@+id/divider"
        android:layout_marginTop="@dimen/small_margin"
        android:background="@color/colorAccent"/>

    </LinearLayout>


</android.support.v4.widget.NestedScrollView>

答案 2 :(得分:0)

我发现的唯一方法就是像下面的代码那样以编程方式使其成为

private void setContainerSize() {
    LinearLayout  contentContainer = getViewDataBinding().container;

    Point point =  SystemUtils.getScreenSize(this);
    float px = SystemUtils.convertDpToPixel(getResources().getDimension(R.dimen.toolbar_size), this);
    assert point != null;
    ViewGroup.LayoutParams layoutParams = contentContainer.getLayoutParams();
    layoutParams.height = (int)(point.getHeight() - px);
    contentContainer.setLayoutParams(layoutParams);
    contentContainer.requestLayout();
}