Android: ListView в ScrollView с динамической высотой

В настоящее время я разрабатываю меню настроек в виде прокрутки. Основная структура выглядит следующим образом:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
            android:layout_width="match_parent"
            android:layout_height="match_parent">

<ScrollView
    android:id="@+id/scrollview_settings"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingTop="@dimen/paddingSmall">

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

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@color/transparent_white_settings"
            android:paddingTop="@dimen/paddingMedium"
            android:paddingBottom="@dimen/paddingMedium">

            <ImageView
                android:id="@+id/logo"
                android:layout_width="68dp"
                android:layout_height="wrap_content"
                android:src="@drawable/newspaper_logo_color"
                android:layout_alignParentRight="true"
                android:layout_margin="@dimen/paddingBig"
                android:adjustViewBounds="true"/>

        </RelativeLayout>

        <!-- Layout News Uebersicht -->

        <include layout="@layout/separator_line_grey"/>

        <de.basecom.noznewsapp.views.FontTextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textAllCaps="true"
            android:textColor="@color/buttonHoverBackground"
            android:textSize="@dimen/sliding_image_kicker_font_size"
            android:paddingLeft="@dimen/paddingLarge"
            android:paddingTop="@dimen/paddingMedium"
            android:paddingBottom="@dimen/paddingMedium"
            android:text="@string/news_overview"
            android:textScaleX="@dimen/letter_spacing"
            android:textStyle="bold"
            android:gravity="center_vertical"
            android:background="@color/settings_header_color"
            android:layout_gravity="center_vertical"/>

        <include layout="@layout/separator_line_grey"/>

        <!-- News-Overview Issues -->
        <LinearLayout
            android:id="@+id/issue_layout"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:background="@color/transparent_white_settings">

            <de.basecom.noznewsapp.views.NewsScrollListView
                android:id="@+id/listview_issues"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:descendantFocusability="blocksDescendants"
                android:divider="@null"
                android:dividerHeight="0dp" />

        </LinearLayout>


        <!-- Layout Einstellungen -->
        <de.basecom.noznewsapp.views.FontTextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textAllCaps="true"
            android:textColor="@color/buttonHoverBackground"
            android:textSize="@dimen/sliding_image_kicker_font_size"
            android:paddingLeft="@dimen/paddingLarge"
            android:paddingTop="@dimen/paddingMedium"
            android:paddingBottom="@dimen/paddingMedium"
            android:text="@string/settings"
            android:textStyle="bold"
            android:textScaleX="@dimen/letter_spacing"
            android:gravity="center_vertical"
            android:background="@color/settings_header_color"
            android:layout_gravity="center_vertical"/>

        <include layout="@layout/separator_line_grey"/>

        <!-- Einstellungs- Werte -->
        <LinearLayout
            android:id="@+id/settings_layout"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:background="@color/transparent_white_settings">

            <RelativeLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:padding="@dimen/paddingLarge">

                <de.basecom.noznewsapp.views.FontTextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="@string/receive_pushmessages"
                    android:textAllCaps="true"
                    android:textScaleX="@dimen/letter_spacing"
                    android:textSize="@dimen/sliding_image_kicker_font_size"
                    android:layout_centerVertical="true"
                    android:textColor="@color/buttonBackground"/>

                <Switch
                    android:id="@+id/receive_pushmessages_switch"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_alignParentRight="true"
                    android:text="@string/empty_string"/>
            </RelativeLayout>
        </LinearLayout>
    </LinearLayout>

</ScrollView>

Для просмотра списка я использовал пользовательскую реализацию, чтобы придать ей фиксированную высоту и сделать ее способной прокручивать в представлении прокрутки (примечание: я должен использовать просмотр списка в представлении прокрутки, потому что у меня много элементов, так что использование линейного макета не будет приятно).

public class CustomListView extends ListView {
public CustomListView(Context context) {
    super(context);
}

public CustomListView(Context context, AttributeSet attrs) {
    super(context, attrs);
}

public CustomListView(Context context, AttributeSet attrs,int defStyle) {
    super(context, attrs, defStyle);
}

@Override
public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
    // Calculate entire height by providing a very large height hint.
    // But do not use the highest 2 bits of this integer; those are
    // reserved for the MeasureSpec mode.
    int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2, MeasureSpec.AT_MOST);
    super.onMeasure(widthMeasureSpec, expandSpec);

    ViewGroup.LayoutParams params = getLayoutParams();
    params.height = getMeasuredHeight();
}

}

Каждый элемент списка содержит метку и сетку, которые отображаются правильно. Но теперь я хочу реализовать функциональность, чтобы пользователь мог щелкнуть метку, чтобы показать и скрыть видимость сетки.

Но если я щелкну на ярлыке, и отобразится сетка, высота списка не адаптируется к новому открытому элементу. Он всегда остается на одной высоте, и если я открою элемент, элементы ниже не будут видны. Это также даже происходит, если я позвоню requestLayout() метод просмотра списка, чтобы вызвать его onMeasure снова.

Кто-нибудь понял, что я делаю не так?

РЕДАКТИРОВАТЬ: Обновил мой XML-файл:)

1 ответ

Решение

Наконец я смог решить эту проблему, заменив Listview с LinearLayout и добавить мои элементы в коде в макет.

Другие вопросы по тегам