0

ScrollView が機能していません。さまざまな組み合わせを試しましたが、うまくいきませんでした。誰かがどこが間違っているのか教えてもらえますか?

    <?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical"
    android:fillViewport="true" >

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

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="#333333"
            android:orientation="horizontal" >

            <ImageView
                android:layout_width="48dp"
                android:layout_height="48dp"
                android:src="@drawable/ic_launcher" />

            <com.appsolute.ultimateproject.TypedfacedTextView
                xmlns:android="http://schemas.android.com/apk/res/android"
                xmlns:font="http://schemas.android.com/apk/res/com.appsolute.ultimateproject"
                android:id="@+id/overview"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:gravity="center"
                android:textAppearance="?android:attr/textAppearanceMedium"
                android:textColor="#ffffff"
                font:typeface="Roboto-Condensed.ttf" />
        </LinearLayout>

        <ListView
            xmlns:android="http://schemas.android.com/apk/res/android"
            android:id="@android:id/list"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="#ffffff"
            android:paddingLeft="@dimen/list_padding"
            android:paddingRight="@dimen/list_padding" />

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="#333333"
            android:orientation="horizontal"
            android:paddingTop="10dp" >

            <com.appsolute.ultimateproject.TypedfacedTextView
                xmlns:android="http://schemas.android.com/apk/res/android"
                xmlns:font="http://schemas.android.com/apk/res/com.appsolute.ultimateproject"
                android:id="@+id/header"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:gravity="center"
                android:paddingBottom="2dp"
                android:textAppearance="?android:attr/textAppearanceSmall"
                android:textColor="#ffffff"
                font:typeface="Roboto-Condensed.ttf" />
        </LinearLayout>

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal"
            android:paddingTop="10dp" >

            <ImageView
                android:layout_width="48dp"
                android:layout_height="48dp"
                android:src="@drawable/ic_action_person" />

            <com.appsolute.ultimateproject.TypedfacedTextView
                xmlns:android="http://schemas.android.com/apk/res/android"
                xmlns:font="http://schemas.android.com/apk/res/com.appsolute.ultimateproject"
                android:id="@+id/header"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:gravity="center"
                android:textAppearance="?android:attr/textAppearanceSmall"
                font:typeface="Roboto-Condensed.ttf" />
        </LinearLayout>

        <View
            android:layout_width="wrap_content"
            android:layout_height="1dp"
            android:background="#333333"
            android:padding="1dp" />

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal"
            android:paddingTop="1dp" >

            <ImageView
                android:layout_width="48dp"
                android:layout_height="48dp"
                android:src="@drawable/ic_action_fav" />

            <com.appsolute.ultimateproject.TypedfacedTextView
                xmlns:android="http://schemas.android.com/apk/res/android"
                xmlns:font="http://schemas.android.com/apk/res/com.appsolute.ultimateproject"
                android:id="@+id/favorites"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:gravity="center"

                android:textAppearance="?android:attr/textAppearanceSmall"
                font:typeface="Roboto-Condensed.ttf" />
        </LinearLayout>

        <View
            android:layout_width="wrap_content"
            android:layout_height="1dp"
            android:background="#333333"
            android:padding="1dp" />

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal"
            android:paddingTop="1dp" >

            <ImageView
                android:layout_width="48dp"
                android:layout_height="48dp"
                android:src="@drawable/ic_action_save" />

            <com.appsolute.ultimateproject.TypedfacedTextView
                xmlns:android="http://schemas.android.com/apk/res/android"
                xmlns:font="http://schemas.android.com/apk/res/com.appsolute.ultimateproject"
                android:id="@+id/saved"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:gravity="center"
                android:textAppearance="?android:attr/textAppearanceSmall"
                font:typeface="Roboto-Condensed.ttf" />
        </LinearLayout>
    </LinearLayout>

</ScrollView>

fillViewport を使用し、基になるコンテンツをラップしました。助けてください。

4

2 に答える 2

1

「どうすれば aを aに入れることができますか?」質問ListViewScrollViewとその後の回答は、ListView独自の内部スクロールを処理し、(レイアウト パフォーマンスの観点から) 高価であり、1 つのスクロール コンテナーを別のコンテナーに配置することは機能しません。

これを回避する最も簡単な方法は、ListView.addHeaderViewListView.addFooterViewを使用することですListView

于 2013-03-21T21:50:33.927 に答える
0

ListViewをScrollViewの中に入れないでください!詳細については、「ScrollviewのandroidListView」のGoogleを参照してください。1つの例はこれです:それが崩壊することなくどうすればListViewをScrollViewに入れることができますか?

于 2013-03-21T21:47:39.867 に答える