我目前正在使用android studio 1.5,我收到渲染错误

时间:2015-12-01 06:23:14

标签: android android-studio

rendering error

这是我收到的错误的图片。请告诉我该怎么办。我是android studio和android编程的新手。 (p.s - 我在win10,如果它有所作为) 谢谢!

my styles.xml file

1 个答案:

答案 0 :(得分:1)

试试这个

<强> styles.xml

 <resources>
     <style name="Theme.AppCompat.Light.NoActionBar" parent="@style/Theme.AppCompat.Light">
     <item name="android:windowNoTitle">true</item>
     </style>
 </resources>

<强>的AndroidManifest.xml

<activity
    android:name="com.example.Home"
    android:label="@string/app_name" 
    android:theme="@style/Theme.AppCompat.Light.NoActionBar"
    >
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />

        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
</activity>