我正在尝试在两个布局之间的重叠点上放置ImageView
。在下图中,我的目标是将ImageView
放置在白色方块所在的位置。 注意:重叠点不一定垂直居中,如下所示
这可能是XML吗?
我现在唯一的猜测是在实际的代码中做到这一点。
编辑2016年8月3日:作为参考,我认为ConstraintLayouts
可能是解决这类问题的最佳解决方案http://tools.android.com/tech-docs/layout-editor
答案 0 :(得分:30)
这可以做你想要的,使用固定高度的图像,或以编程方式计算。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<RelativeLayout
android:id="@+id/layoutTop"
android:layout_width="match_parent"
android:layout_height="200dp" >
</RelativeLayout>
<RelativeLayout
android:id="@+id/layoutBottom"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_alignParentBottom="true"
android:layout_below="@id/layoutTop" >
</RelativeLayout>
<ImageView
android:id="@+id/overlapImage"
android:layout_width="wrap_content"
android:layout_height="40dp"
android:layout_above="@id/layoutBottom"
android:layout_centerHorizontal="true"
android:layout_marginBottom="-20dp" <!-- This should be always half the height, can also be calculated and added programtically -->
android:adjustViewBounds="true"
android:src="@drawable/ic_launcher" />
</RelativeLayout>
答案 1 :(得分:0)
请尝试这种方式,希望这有助于您解决问题。
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
</LinearLayout>
</LinearLayout>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_launcher"
android:adjustViewBounds="true"
android:layout_gravity="center"/>
</FrameLayout>
答案 2 :(得分:0)
使用约束布局 然后假设有一个top_view和bottom_view 您要将视图放置在top_view和bottom_view之间
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:id="@+id/top_view"
android:layout_width="match_parent"
android:layout_height="@dimen/dp_size_100"
android:background="@color/white"
android:orientation="vertical"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<LinearLayout
android:id="@+id/middle_layout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
app:layout_constraintBottom_toBottomOf="@id/top_view"
app:layout_constraintTop_toBottomOf="@id/top_view">
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="abcd" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ipsum" />
</LinearLayout>
这应该做