Проблема в прокрутке нижнего листа в андроиде - PullRequest
0 голосов
/ 01 апреля 2019

Моя проблема с нижним листом в Android состоит в том, что когда я прокручиваю лист вверх, он заполняет все действие. Мне нужно, чтобы мой нижний лист остановился на определенной высоте.

Ниже мой код:

activity_main.xml: -

<android.support.design.widget.CoordinatorLayout 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"
tools:context=".MainActivity">


<Button
    android:id="@+id/button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Click here"
    tools:layout_editor_absoluteX="161dp"
    tools:layout_editor_absoluteY="272dp"
    tools:ignore="MissingConstraints" />

<include
    layout="@layout/bottom_sheet"
    android:layout_height="79dp" />
  </android.support.design.widget.CoordinatorLayout>

MainActivity.java

  @Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    linearLayout = (LinearLayout)findViewById(R.id.linearlayour);
    bottomSheetBehavior = BottomSheetBehavior.from(linearLayout);
    bottomSheetBehavior.setPeekHeight(200);


}

Ниже приведен мой файл bottom_sheet.xml: -

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
app:layout_behavior="android.support.design.widget.BottomSheetBehavior"
android:id="@+id/linearlayour"

app:behavior_peekHeight="100dp">


<Button
    android:id="@+id/button3"
    android:layout_width="match_parent"
    android:layout_height="16dp"
    android:layout_weight="1"
    android:text="Button" />

<Button
    android:id="@+id/button2"
    android:layout_width="match_parent"
    android:layout_height="16dp"
    android:layout_weight="1"
    android:text="Inside bottom" />

Мне нужно, чтобы мой нижний лист остановился на определенной высоте. Я не могу заставить это работать так. Пожалуйста помоги. Заранее спасибо

Ответы [ 2 ]

0 голосов
/ 03 апреля 2019

Используйте CollapsingLayout над основным макетом, как это

<android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <android.support.design.widget.CollapsingToolbarLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:fitsSystemWindows="true"
            app:layout_scrollFlags="scroll|exitUntilCollapsed">



        </android.support.design.widget.CollapsingToolbarLayout>
    </android.support.design.widget.AppBarLayout>

А затем поместите свой макет прокрутки с атрибутом -

    app:layout_behavior="@string/appbar_scrolling_view_behavior"
0 голосов
/ 01 апреля 2019

Используйте атрибут peekHeight нижней таблицы, чтобы установить максимальную высоту, на которую он может прокрутить max

<FrameLayout
    android:layout_width="match_parent"
    android:layout_height="300dp"
    android:fitsSystemWindows="true"
    app:behavior_hideable="false"
    app:behavior_peekHeight="200dp"
    app:layout_behavior="@string/bottom_sheet_behavior">
    <include layout="@layout/bottom_sheet_content_view" />
</FrameLayout>
...