Кнопка внизу ScrollView отсекается - PullRequest
0 голосов
/ 03 июня 2019

У меня есть scrollview, который очень похож на раздел информации о группе WhatsApp.Он показывает список (recyclerview) всех участников группы и кнопку для выхода из группы.Проблема заключается в том, что когда в recyclerview находится более 5 или 6 человек, кнопка выхода из группы (ID - groupInfoLeaveGroupButton) удаляется из нижней части экрана, и я не могу прокрутить вниз до нее.

Я понятия не имею, почему это происходит, любая помощь приветствуется.

В окне повторного просмотра установлено setNestedScrollingEnabled (false).

<?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_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context="whatsappmock.com.activities.GroupInformation">

    <com.google.android.material.appbar.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/ToolbarTheme">

        <androidx.appcompat.widget.Toolbar
            android:id="@+id/groupInfoToolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="@color/whiteText"
            app:popupTheme="@style/AppTheme.PopupOverlay" />

    </com.google.android.material.appbar.AppBarLayout>

    <ScrollView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:fillViewport="true">

        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="vertical">

            <RelativeLayout
                android:layout_width="match_parent"
                android:layout_height="225dp">

                <ImageView
                    android:id="@+id/groupInfoGroupImage"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:src="@drawable/no_group_icon" />

                <Button
                    android:id="@+id/groupInfoChangeImage"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_alignParentBottom="true"
                    android:layout_margin="10dp"
                    android:alpha="0.3"
                    android:background="#000000"
                    android:fontFamily="@font/cairo"
                    android:paddingLeft="5dp"
                    android:paddingRight="5dp"
                    android:text="Change Group Image"
                    android:textColor="@color/whiteText"
                    android:textSize="20sp"
                    android:textStyle="bold" />
            </RelativeLayout>

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

                <LinearLayout
                    android:id="@+id/groupInfoGroupDescriptionContainer"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_marginBottom="10dp"
                    android:background="@color/whiteText"
                    android:orientation="vertical"
                    android:visibility="gone">

                    <TextView
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:padding="3dp"
                        android:paddingStart="10dp"
                        android:paddingEnd="10dp"
                        android:text="@string/groupInfoGroupDescription"
                        android:textColor="@color/colorAccent"
                        android:textSize="18sp" />

                    <TextView
                        android:id="@+id/groupDescriptionTV"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:padding="3dp"
                        android:paddingStart="10dp"
                        android:paddingEnd="10dp"
                        android:textSize="15sp"
                        tools:text="Test Description" />

                </LinearLayout>

                <TextView
                    android:id="@+id/groupInfoNumberOfParticipants"
                    android:layout_width="match_parent"
                    android:layout_height="30dp"
                    android:background="@color/whiteText"
                    android:paddingLeft="10dp"
                    android:paddingTop="3dp"
                    android:paddingRight="10dp"
                    android:paddingBottom="3dp"
                    android:textSize="16sp"
                    tools:text="8 Participants" />

                <View
                    android:layout_width="match_parent"
                    android:layout_height="1dp" />

                <androidx.recyclerview.widget.RecyclerView
                    android:id="@+id/groupInfoParticipantsRv"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_marginBottom="20dp"
                    android:background="@color/whiteText">

                </androidx.recyclerview.widget.RecyclerView>

                <Button
                    android:id="@+id/groupInfoLeaveGroupButton"
                    android:layout_width="match_parent"
                    android:layout_height="55dp"
                    android:background="@drawable/leave_group_rounded_button_bg"
                    android:fontFamily="@font/cairo"
                    android:gravity="center"
                    android:text="@string/group_info_leave_group"
                    android:textColor="@color/whiteText"
                    android:textSize="25sp" />

            </LinearLayout>

        </LinearLayout>

    </ScrollView>

</LinearLayout>

Ответы [ 2 ]

2 голосов
/ 03 июня 2019

Ваш recyclerview занимает все пространство, его необходимо настроить так, чтобы он отображался над кнопкой. Измени это так

<androidx.recyclerview.widget.RecyclerView
                android:id="@+id/groupInfoParticipantsRv"
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:layout_weight="1"
                android:layout_marginBottom="20dp"
                android:background="@color/whiteText">
0 голосов
/ 03 июня 2019

Вероятно, это из-за вашей наценки на переработку. Вы можете удалить его или добавить невидимый вид внизу прокрутки дочернего вида

        <View
        android:layout_width="match_parent"
        android:layout_height="20dp"/>

       </LinearLayout>

    </ScrollView>

</LinearLayout>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...