自定义视图可以更改其位置吗?

时间:2016-03-28 13:23:22

标签: android android-layout android-custom-view

我写了一个自定义视图。根据其内容,我希望将其移动一点,使其与ImageView重叠。

为此,我在onLayout中设置了新的Y值。视图向上移动但视图下方现在有一个空白区域: - (

我的自定义视图中的

onLayout

@Override
protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
    super.onLayout(changed, left, top, right, bottom);
    setY(getY() - mOverlap);
}

这是布局:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView
    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="wrap_content"
    android:layout_marginBottom="4dp"
    android:layout_marginLeft="8dp"
    android:layout_marginRight="8dp"
    android:layout_marginTop="4dp"
    app:cardBackgroundColor="@color/eventitem_background">

    <android.support.percent.PercentRelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <ImageView
            android:id="@+id/imageView_cell_event"
            android:layout_width="0dp"
            android:layout_height="0dp"
            app:layout_aspectRatio="266%"
            app:layout_widthPercent="100%"/>

        <me.veents.ui.views.EventListView
            android:id="@+id/eventListView_cell_event"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_below="@id/imageView_cell_event"/>

    </android.support.percent.PercentRelativeLayout>

</android.support.v7.widget.CardView>

1 个答案:

答案 0 :(得分:0)

我建议使用:

1)FrameLayout - 它将其子项绘制在另一个

之上

2)视图下方和上方的空视图(<View .../>),您将定位视图,指定这些空视图的高度。 (相同的技术适用于水平定位。)