0

コンテンツが画面からはみ出たときにスクロールできるようにしたいレイアウトがあります。次のレイアウトxmlを設定しました。

<?xml version="1.0" encoding="utf-8"?>
<ScrollView android:id="@+id/ScrlView" 
     xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
     android:layout_height="fill_parent" >
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:isScrollContainer="false"
    android:id="@+id/home_root"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/backrepeat">
        <!-- Include Header  -->
        <include layout="@layout/main_header"/>

        <!--  Include dashboard -->
        <include layout="@layout/dashboard"/>   



</LinearLayout>
</ScrollView>

ダッシュボードは、メニューとして機能するアイコンの集まりです。例: click me 残念ながら、2 番目のインクルード (ダッシュボード) には「壊れた」と表示されます。画面を見る: ここをクリック

ご覧のとおり、想定されているようには見えません。スクロールビューを削除すると、すべて問題ありません。

私が望むのは、ダッシュボードの見栄えを維持しながら、必要に応じてスクロールできるようにすることです。いくつかのセットアップを試しましたが、すべて同じ結果になります。私は何を間違っていますか?

どんな助けでも大歓迎です:)

4

1 に答える 1

1

を削除しandroid:isScrollContainer="false"、に追加android:fillViewport="true"しますscrollView

于 2013-02-15T21:23:24.680 に答える