<androidx.constraintlayout.widget.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=".MainActivity"> <Button android:id="@+id/button1" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="Button1" />这里button标红
时间: 2024-04-21 10:25:30 浏览: 207
实现一个简单的待办事项列表应用 1. 创建项目 打开Android Studio 创建新项目:选择Start a new A
5星 · 资源好评率100%
这段代码中的Button标红可能是因为缺少了Button的命名空间。请检查你的xml文件是否在根节点中声明了命名空间,例如:
```
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:button="http://schemas.android.com/apk/res-auto"
```
同时,你需要在Button标签中使用button命名空间,例如:
```
<Button
android:id="@+id/button1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Button1"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toTopOf="parent" />
```
这样就可以消除红色标记了。
阅读全文