0

我有一个带有单选按钮的列表视图,现在我需要在编辑文本中键入一些内容后从编辑文本中添加一个值,键入的文本应该出现在列表视图中作为下一行。?怎么可能。?

4

1 回答 1

0

ListView 与 simpleArrayAdapter :

请按照以下步骤操作可能会有所帮助:

  1. Fetch the value from edit text after the user types using gettext()
  2. Insert this value in an array.
  3. create a list view.
  4. create an arrayAdapter with the already created array as source.
  5. Now set the adapter with listview using (array variable).setAdapter(adapter name);

每次用户更新时,都会使用notifyDataSetChanged()新内容刷新您的列表视图。

伪代码:

 onClick(){
       array.add(editText.gettext());
       adapter.notifyDataSetChanged();
      }

点击这里了解更多。

于 2013-06-08T13:44:23.133 回答