1

我必须在下图中用红线标记的两个布局之间设置圆形图像视图

在此处输入图像描述

我正在使用这个 UI 来实现weight它,以便我可以在任何设备中使用它,但问题是我无法将该 imageview 放在两个布局之间。任何建议都会有很大帮助。

4

2 回答 2

1

这可以使用 frameLayout 来实现:

这种布局可以很容易地在其他布局之上进行绘制。 https://github.com/thecodepath/android_guides/wiki/Constructing-View-Layouts

于 2013-11-07T13:15:27.500 回答
0

如果您希望图像占据 2 个布局之间的空间,请使用 和LinearLayout作为根布局,android:orientation="vertical"并将图像保持在 2 个布局android:layout_height="0dp"之间android:layout_weight="1"。图像将占据运行时 2 个布局之间留下的任何空间。

于 2013-11-07T13:10:43.907 回答