2

我想像下图一样覆盖图像视图和画廊

我想要这样

我试过这样..

<RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="70dp" >
<ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"        
        android:src="@drawable/title_header" />

<Gallery 
        android:id="@+id/Gallery" 
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content"></Gallery>

</RelativeLayout>

但它不是覆盖。请帮助我..

4

1 回答 1

1

请试试这个

<RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="70dp" >

<Gallery 
    android:id="@+id/Gallery" 
    android:layout_width="fill_parent" 
    android:layout_marginTop="10dip"
    android:layout_height="wrap_content"></Gallery>

<ImageView
    android:layout_width="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_height="wrap_content"        
    android:src="@drawable/title_header" />

</RelativeLayout>

android:layout_marginTop="10dip"根据需要给予价值。

于 2013-02-11T10:58:13.870 回答