在膨胀包含自己视图的自定义视图时出现StackOverflowError

时间:2015-05-18 02:27:40

标签: android android-layout android-fragments android-inflate

我有一个片段,我在那里膨胀“fragment_board.xml”:

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

    <view
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        class="com.app.BoardView"
        android:id="@+id/view_board"/>
</FrameLayout>

如您所见,fragment_board包含一个自定义视图“BoardView”,我想在其中加载以下“view_board.xml”:

<com.app.BoardView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:scrollbars="none"
    android:fadingEdge="none"
    android:requiresFadingEdge="none"
    android:overScrollMode="always"
    android:id="@+id/board_scrollview_vertical">

    <android.widget.HorizontalScrollView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:scrollbars="none"
        android:fadingEdge="none"
        android:requiresFadingEdge="none"
        android:overScrollMode="always"
        android:id="@+id/board_scrollview_horizontal"
        android:foregroundGravity="left">

    </android.widget.HorizontalScrollView>

</com.app.BoardView>

我的自定义视图包含两个滚动视图(我用它进行平移),我希望能够在其他布局中重复使用它。 BoardView扩展了外部(垂直)滚动视图,如下所示:

public class BoardView extends ScrollView

当我独立使用它时,它会膨胀很好,我可以在膨胀的布局中找到ViewById()两个滚动视图。但是当我在布局树(例如片段)中使用它时,我遇到了问题。

在片段中,我像这样膨胀布局树:

View view = inflater.inflate(R.layout.fragment_board, container, false)

从片段中,我可以找到ViewById()外部(垂直)滚动视图,但findViewById()为内部(水平)滚动视图返回null。

在BoardView中,我像这样膨胀:

View view = inflate(getContext(), R.layout.view_board, this);

如上所述,我可以发现两个滚动视图在自身膨胀时都很好,但是当作为片段的一部分膨胀时,我得到了StackOverflowError。

很清楚为什么:我首先在片段中膨胀,然后再次在视图中膨胀相同的XML,这会触发视图的另一次膨胀,依此类推。我在这里得到一个循环引用。问题我无法弄清楚如何将内部(水平)滚动视图添加到现有布局。我想我需要以某种方式合并或手动扩充布局,但我无法弄清楚如何。

以下是一些参考文献(在我的案例中没有帮助):

任何人都可以建议我应该做些什么。如果可能的话,我希望BoardView作为通用组件工作,我可以根据需要将其插入布局树。

由于Android [根据以上参考之一]并未正式支持复合组件,我最好的选择是删除内部视图的XML布局并将其添加到代码中吗?

1 个答案:

答案 0 :(得分:2)

请检查此类问题是否解决了问题:

fragment_board.xml

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

    <com.app.BoardView
        android:id="@+id/view_board"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>
</FrameLayout>

view_board.xml

 <merge xmlns:android="http://schemas.android.com/apk/res/android"

    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:scrollbars="none"
    android:fadingEdge="none"
    android:requiresFadingEdge="none"
    android:overScrollMode="always"
    android:id="@+id/board_scrollview_vertical">

    <android.widget.HorizontalScrollView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:scrollbars="none"
        android:fadingEdge="none"
        android:requiresFadingEdge="none"
        android:overScrollMode="always"
        android:id="@+id/board_scrollview_horizontal"
        android:foregroundGravity="left">

    </android.widget.HorizontalScrollView>

</merge>

有关使用MERGE and INCLUDE

的更多信息