我无法弄清楚为什么会收到此错误。从一个快速的谷歌搜索,我可以弄清楚是有一些语法错误,但我仍然无法弄明白。
<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">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toTopOf="parent">
<Button
android:id="@+id/but1"
android:layout_width="100dp"
android:layout_height="200dp"
android:text="button1"/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/but2"
android:text="button2"/>
</LinearLayout>
<TextView android:text="@string/hello_world" android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</RelativeLayout>
答案 0 :(得分:0)
尝试在下面的代码中添加xmlns:app="http://schemas.android.com/apk/res-auto"
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto" //change here
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">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toTopOf="parent">
<Button
android:id="@+id/but1"
android:layout_width="100dp"
android:layout_height="200dp"
android:text="button1"/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/but2"
android:text="button2"/>
</LinearLayout>
<TextView android:text="@string/hello_world" android:layout_width="wrap_content"
android:layout_height="wrap_content" />
答案 1 :(得分:0)
必须声明命名空间前缀(app
中的app:layout_constraintBottom_toBottomOf
)(绑定到命名空间URI)。您的错误表明它不是。
声明名称空间和表单
的名称空间声明xmlns:xyz="http://example.com/something"
指向您希望声明适用的共同祖先。
您从中复制XML的模板应该已经有了这样的声明。如果您再也找不到它,可以查看文档或谷歌搜索示例。在这种情况下,app:layout_constraintBottom_toBottomOf
似乎应声明如下:
xmlns:app="http://schemas.android.com/apk/res-auto"
您应该对任何其他已使用但未定义的名称空间前缀重复此过程:
xmlns:android="http://schemas.android.com/apk/res/android"
等