<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/speed"
android:inputType="number"></EditText>"
<TextView
android:id="@+id/TextViewSpeed"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text ="Speed"
android:layout_below="@+id/speed"
/>
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:text="AddValue"
android:id="@+id/AddValue"
>
</Button>
<ListView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/ListView"
android:layout_below="@+id/AddValue"
>
</ListView>
</RelativeLayout>
这是我的布局代码。我想将 EditText 中的文本数据添加到同一页面上的 ListView 中。当我单击 AddValue 按钮时,如何编写代码以将文本添加到列表中。提前致谢。