我有一个 HorizontalScrollView,现在我想在布局的顶部添加一个图像,旁边有一个并行的按钮。问题是我对如何调整这一切有点迷茫。它应该是这样的。
[图像] [图像按钮]
[水平滚动视图]
正如我现在将图像重叠在一起一样。我应该改变什么?
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="bottom"
android:background="@color/black" >
<HorizontalScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="false"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true" >
<LinearLayout
android:id="@+id/carrusel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal" >
</LinearLayout>
</HorizontalScrollView>
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="false"
android:layout_alignParentTop="true"
android:layout_marginTop="0dp"
android:layout_toLeftOf="@+id/imageButton1"
android:src="@drawable/top" />
<ImageButton
android:id="@+id/imageButton1"
android:layout_width="50dp"
android:layout_height="60dp"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:layout_marginTop="26dp"
android:scaleType="fitCenter"
android:src="@drawable/info" />
</RelativeLayout>