元素 LinearLayout 没有必需的属性layout_height

the*_*ate 3 android android-layout

每个 TextView 和 Button 以及 LinearLayout 标签都会抱怨

'layout_height' attribute should be defined

'layout_width' attribute should be defined 
Run Code Online (Sandbox Code Playgroud)

这是我的activity_main.xml:

<LinearLayout
xmlns:android="http://schemas.android.com/apk/rest/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TextView
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:text="@string/main_title" />
<Button
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/continue_label" />
<Button
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/new_game_label" />
<Button
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/about_label" />
<Button
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/exit_label" />
</LinearLayout>
Run Code Online (Sandbox Code Playgroud)

我正在运行 Android Studio 1.1.0

Ken*_*olf 5

将您的xmlns属性更改为:

xmlns:android="http://schemas.android.com/apk/res/android"

/res/不是/rest/