我今天开始学习 Android 开发,我需要帮助理解一些 XML 代码的工作原理。我正在使用的书没有解释代码,但是,使用它给了我想要的结果。
<?xml version="1.0" encoding="utf-8"?>
<inearLayout xmlns:android="http://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="New To Do Item"
/*The above lines are the only things I understand. the code below does not create an
actual list, instead just initiates the layout of height and width. */
/>
<ListView
android:id="@+id/myListView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
</LinearLayout>
使用此代码生成一个待办事项列表,所有项目都标记为“项目 1”、“项目 2”等。
我不明白当没有使用实际代码时如何创建列表
-另外,我想知道 XML 编码与 Android 编程的相关性。如果这门语言有用,我应该学习吗?
谢谢。