渲染问题渲染期间引发的异常:<include>只能在ViewGroup内部使用

时间:2015-05-30 14:22:55

标签: android android-studio rendering

我刚开始使用Android Studio进行开发。所以这就是问题所在: 我打开一个新项目,在触摸或添加代码之前,我得到了这个:

“渲染问题渲染期间引发的异常:只能在ViewGroup内部使用”

所以我使用Nexus 4作为ADV(默认情况下),所以我尝试了其他ADV并获得相同的警告。唯一没有警告的是Android Wear Round和Square。

任何可以帮助我的人?下面是布局代码:

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

<TextView android:text="Hi"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="22dp"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true"
    android:id="@+id/textView" />


    </RelativeLayout>

2 个答案:

答案 0 :(得分:3)

在styles.xml中,在Theame.AppCompat.Light.DarkActionBar之前添加Base

<!-- Base application theme. -->
<style name="AppTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar">
    <!-- Customize your theme here. -->
</style>

答案 1 :(得分:0)

感谢那些试图帮助我的人。我已经解决了我的问题并希望与您分享其他可能遇到同样问题的案例。实际上很简单,我偶然发现了它:D

从上面的栏中选择Build&gt;制作模块&#39; app&#39;

那就是:D这解决了我的问题