我正在研究我在互联网上找到的一个非常简单的示例,但是我的 main.xml 布局文件不起作用。
当我在 main.xml 添加正文时,它无法显示任何东西。
任何帮助表示赞赏:)
这是 main.xml 文件。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="schemas.android.com/apk/res/android"; android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent">
<EditText android:id="@+id/myEditText" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/new_to_do_item" android:hint="@string/hint_msg" />
<ListView android:id="@+id/myListView" android:layout_width="fill_parent" android:layout_height="wrap_content" />
</LinearLayout>