1

相対レイアウト内にラップされた 2 つのテキストビューと 1 つの拡張可能なリスト ビューがあり、このレイアウトはスクロールビュー内にあります。展開可能なリスト ビューは、アクティビティの下部にあります。テキストビューに長いテキストがある場合、アクティビティをスクロールできますが、リストを展開すると、展開されたコンテンツまでスクロールしません。これが私の XML レイアウトとアクティビティのスクリーン ショットです。

<Scrollview xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:paddingBottom="@dimen/activity_vertical_margin"
    tools:context=".AboutActivity$PlaceholderFragment"
    android:id="@id/scrollview"
    android:background="#2d89ef"
    android:fillViewport="true">

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:id="@id/relativelayout"
    android:weightSum="3">
    <TextView
        android:text="ABOUT PAGE"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:textColor="#FFFFFF"
        android:id="@id/about_text"
        android:autoText="false"
        android:textStyle="normal"
        android:typeface="normal"
        android:layout_weight="1"/>

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:text="@string/faq"
        android:id="@+id/textView"
        android:layout_below="@id/about_text"
        android:layout_alignParentLeft="true"
        android:layout_weight="1"/>

    <ExpandableListView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:id="@+id/expandableListView"
        android:layout_below="@+id/textView"
        android:layout_alignParentLeft="true"
        android:layout_weight="1"
        android:layout_alignParentBottom="true" />
</RelativeLayout>
</Scrollview>

アクティビティ

リストを展開すると、expandlistview の最後までスクロールできません。expandlistview の高さを更新して、展開されたコンテンツにラップするようにします。

4

1 に答える 1