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