-1

これを理解しようとしています..私はAdroidを初めて使用し、画面全体をスクロールビューにしようとしています...これはヘッダー画像とリストです...すべて一緒にスクロールしたいと思います。このレイアウトを使用して実行できますか?ありがとう!

<?xml version="1.0" encoding="UTF-8"?>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/containerView"
    android:background="@android:color/transparent"    
    android:padding="0dip"
    android:layout_margin="0dip"
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content">

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/headerImageContainer"
        android:background="@android:color/transparent"    
        android:padding="0dip"
        android:layout_margin="0dip"
        android:layout_centerHorizontal="true"
        android:layout_alignParentTop="true"
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content">

            <ImageView 
                  xmlns:android="http://schemas.android.com/apk/res/android"               
            android:id="@+id/headerImageView"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:scaleType="center"
            android:layout_centerHorizontal="true"
            android:layout_alignParentTop="true">
        </ImageView>

    </LinearLayout>

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/listViewContainer"
        android:background="@android:color/transparent"    
        android:paddingLeft="35dip"
            android:paddingRight="35dip"
            android:paddingTop="10dip"
            android:paddingBottom="0dip"

        android:layout_margin="0dip"
        android:layout_weight="1"
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content"
        android:layout_below="@+id/headerImageContainer">

        <ListView xmlns:android="http://schemas.android.com/apk/res/android"
            android:id="@+id/listView"
            android:background="@android:color/transparent"    
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" 
            android:cacheColorHint="#000000"

            android:choiceMode="singleChoice" 
            android:layout_weight="1"
            android:scrollbars="none">
        </ListView>

    </LinearLayout>

   </RelativeLayout>
4

2 に答える 2

0

一緒にスクロールするとはどういう意味ですか。アイテム1からアイテムnに移動するときに、画像もスクロールしたい場合。次に、スクロールビューを使用する代わりに、リストビューを最初の行の画像と統合するか、その画像をリストアイテムのヘッダーとして作成します。スクロールビューは、リストビューに組み込まれているスクロールビューのようにアイテムをスクロールするために使用されます。

于 2012-04-05T02:44:17.317 に答える
0

あなたが持っているすべてのものをカプセル化する

<LinearLayout
 ...>
    <ScrollView
     ...>
         Your original XML content here
    </ScrollView>
</LinearLayout>

そしてそれはうまくいくはずです。

于 2012-04-05T03:05:19.360 に答える