我都有以下錯誤:應用程序崩潰,當我嘗試刪除標題欄
Missing classes One or more layouts are missing the layout_width or layout_height attributs
和
element activity is not allowed here
這裏是我的佈局
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.niklas.uebungsrechner.MainActivity"
tools:layout_editor_absoluteY="81dp"
tools:layout_editor_absoluteX="0dp">
<activity android:name=".MainActivity"
android:theme="@android:style/Theme.NoTitleBar">
</activity>
您不能在佈局中進行活動。活動標籤應該只在清單中使用 –