当我尝试向TextView元素添加id属性时,我的应用程序在运行项目时停止。该项目运行良好,直到我这样做。
这是代码
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="24dp"
android:textSize="10sp"
==&GT;机器人:ID = “@ + ID / question_text_view” &GT;
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:id="@+id/true_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="10sp"
android:text="@string/true_button" />
<Button
android:id="@+id/false_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="10sp"
android:text="@string/false_button" />
</LinearLayout>
</LinearLayout>
当我删除属性时,项目在我启动时再次运行。
PS它在模拟器中显示任何内容之前停止
答案 0 :(得分:0)
您的文字视图应如下所示:
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="24dp"
android:textSize="10sp"
android:id="@+id/question_text_view"/>
答案 1 :(得分:0)
原来我需要清理并构建项目