xml中不能直接添加ViewGroup

Posted ming

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xml中不能直接添加ViewGroup相关的知识,希望对你有一定的参考价值。

我知道可以直接添加一个<View />的,今天想添加个容器类,然后后台动态添加SurfaceView到ViewGroup容器里,不过提示inflate报错了。难道ViewGroup不能直接这么添加吗?

<LinearLayout 
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        >   
         <ViewGroup
             android:layout_width="wrap_content"
             android:layout_height="wrap_content"
             />                
    </LinearLayout>

  不能, ViewGroup 是一个抽象类,无法直接实例化

以上是关于xml中不能直接添加ViewGroup的主要内容,如果未能解决你的问题,请参考以下文章

VS中添加自定义代码片段——偷懒小技巧

布局管理器ViewGroup

ViewGroup 容器在哪里初始化?

Android Stackoverflow错误:ViewGroup.jumpDrawablesToCurrentState

在片段中添加 ListView

如何在没有 XML 的情况下以编程方式将片段添加到活动