-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 回答