在这种情况下,我的 xml 文件显示了某个布局,而在运行时生成了另一个布局。对于为什么在运行时显示的布局与给定的布局完全不同,我感到非常困惑。这是xml文件的代码
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<EditText
android:id="@+id/username"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10" >
<requestFocus />
</EditText>
</LinearLayout>
<Button
android:id="@+id/signUp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Sign up!" />
</LinearLayout>
这会在标签和按钮上显示在此处插入名称。该按钮已正确绑定并按下它确实会执行某些操作,但是我无法在运行时输入文本字段。