Моя проблема с нижним листом в 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" />
Мне нужно, чтобы мой нижний лист остановился на определенной высоте. Я не могу заставить это работать так. Пожалуйста помоги. Заранее спасибо