未添加自定义视图层次结构子项

Custom view hierarchy child not added

我有一个自定义视图层次结构,如下所示:

Activity(RelativeLayout) -> ParentLayout(FrameLayout) -> ChildLayout(LinearLayout)

activity 和父布局已添加并显示得很好,但子布局不是。我查看了设备监视器中的层次结构查看器,以确认它没有被添加到视图层次结构中。

我在这里真正想做的就是创建一个视图层次结构,这样我就可以处理视图中不同位置的触摸事件。

这里是一切:

main_activity.xml

<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:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity">

    <net.openeye.touchevents.ParentLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#558833" />

</RelativeLayout>

parent_layout.xml:

<?xml version="1.0" encoding="utf-8"?>
<net.openeye.touchevents.ParentLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <net.openeye.touchevents.ChildLayout
        android:id="@+id/child_view"
        android:layout_width="300dp"
        android:layout_height="300dp" />

</net.openeye.touchevents.ParentLayout>

ParentLayout.java:

public class ParentLayout extends FrameLayout implements View.OnTouchListener {
    public ParentLayout(Context context) {
        super(context);
    }

    public ParentLayout(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public ParentLayout(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }
}

child_layout.xml

<?xml version="1.0" encoding="utf-8"?>
<net.openeye.touchevents.ChildLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="300dp"
    android:layout_height="300dp"
    android:background="#0066dd"
    android:orientation="vertical">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:text="Hi"/>

</net.openeye.touchevents.ChildLayout>

ChildLayout.java:

public class ChildLayout extends LinearLayout {
    public ChildLayout(Context context) {
        super(context);
    }

    public ChildLayout(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public ChildLayout(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }
}

我错过了什么?我有另一个基本上以相同方式设置的项目,除了子视图是动态膨胀和添加的,而不是直接添加到 xml 布局文件中。这似乎应该可以,但我不明白为什么不行。

所以看起来当您有一个自定义视图 class 时,您不希望布局文件的视图与自定义视图具有相同的类型 class。即,如果我有 ParentLayout.java,我不希望 parent_layout.xml 的根是 <net.openeye.TouchEvents.ParentLayout>。似乎当您同时需要自定义布局文件和自定义视图 class 时,您需要让视图 class 膨胀布局。如果布局具有与 class 相同的元素(在本例中为根元素),它将导致无限递归,因为视图会膨胀布局,实例化 class,从而膨胀布局...等等。

我通过进行以下更改最终使它起作用:

parent_layout.xml:
将根元素从 net.openeye.TouchEvents.ParentLayout 更改为它扩展的 class FrameLayout。现在看起来像这样:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <!-- ... -->
</FrameLayout>

child_layout.xml:
将根元素从 net.openeye.TouchEvents.ChildLayout 更改为它扩展的 class LinearLayout。现在看起来像这样:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="300dp"
    android:layout_height="300dp"
    android:orientation="vertical">
    <!-- ... -->
</LinearLayout>

ParentLayout.java:在实例化期间膨胀它的布局。现在看起来像这样:

public ParentLayout(Context context) {
    super(context);
    init(context);
}

public ParentLayout(Context context, AttributeSet attrs) {
    super(context, attrs);
    init(context);
}

public ParentLayout(Context context, AttributeSet attrs, int defStyleAttr) {
    super(context, attrs, defStyleAttr);
    init(context);
}

private void init(Context context) {
    inflate(context, R.layout.parent_layout, this);
}

ChildLayout.java:与ParentLayout.java相同,但膨胀child_layout

在开始工作并思考为什么会这样之后,这就是它的工作方式是有道理的。