Android - xml 布局

Android - xml layout

我只是 android 编程和 xml 设计的新手。

我这里有这张图片http://i.imgur.com/baLr0AY.png。我想创建类似的东西,但我不知道我要使用哪种布局。我也不确定我要使用哪个小部件。

我想要像顶部的大图像这样的东西,并在它下面填充一些列表视图。我希望整个滚动,而不仅仅是列表视图在滚动。请帮我编写 xml 代码。

这是我到目前为止所尝试过的方法。

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

        <ImageView
            android:id="@+id/feauturedImage"
            android:layout_width="match_parent"
            android:layout_height="100dp"
            android:src="@drawable/placeholder"
            android:layout_height="wrap_content" />

        <ListView
            android:id="@+id/listView"
            android:layout_below="@+id/featuredImage"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"/>

    </RelativeLayout>

我认为这对你有帮助....

<RelativeLayout 
   xmlns:android="http://schemas.android.com/apk/res/android"
   android:layout_width="match_parent"
   android:layout_height="match_parent" >
  <ImageView
    android:id="@+id/featuredimage"
    android:layout_width="match_parent"
    android:layout_height="65dp"
    android:layout_alignParentTop="true"
    android:layout_alignParentRight="true"
    android:scaleType="fitXY"
    android:src="@drawable/bar" />

  <ListView
    android:id="@+id/list11"
    android:layout_width="fill_parent"
    android:layout_height="match_parent"
    android:layout_alignParentLeft="true"
    android:layout_below="@+id/featuredimage"
    android:cacheColorHint="#000000"
    android:focusable="false"
    android:scrollbars="vertical"
    android:scrollingCache="false"
    android:listSelector="@color/itemcolor1">
    </ListView>

  </RelativeLayout>