android ListView内数据的动态添加与删除

main.xml 文件:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:orientation="horizontal"
  6. >
  7. <LinearLayout
  8. android:layout_width="fill_parent"
  9. android:layout_height="fill_parent"
  10. android:orientation="vertical"
  11. >
  12. <ListView
  13. android:id="@+id/listview"
  14. android:layout_width="fill_parent"
  15. android:layout_height="wrap_content"
  16. />
  17. <Button
  18. android:id="@+id/add"
  19. android:layout_width="wrap_content"
  20. android:layout_height="wrap_content"
  21. android:text="添加"
  22. />
  23. </LinearLayout>
  24. </LinearLayout>

listview_item.xml文件:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="fill_parent"
  4. android:layout_height="wrap_content"
  5. android:orientation="horizontal"
  6. android:background="#000000"
  7. android:padding="20dp"
  8. >
  9. <EditText
  10. android:id="@+id/edit"
  11. android:layout_width="200dp"
  12. android:layout_height="wrap_content"
  13. />
  14. <Button
  15. android:id="@+id/del"
  16. android:layout_width="wrap_content"
  17. android:layout_height="wrap_content"
  18. android:text="删除"
  19. />
  20. </LinearLayout>

MainActivity .java

    1. package com.yyy.testandroid;
    2. import java.util.ArrayList;
    3. import android.app.Activity;
    4. import android.content.Context;
    5. import android.os.Bundle;
    6. import android.view.LayoutInflater;
    7. import android.view.View;
    8. import android.view.View.OnClickListener;
    9. import android.view.View.OnFocusChangeListener;
    10. import android.view.ViewGroup;
    11. import android.widget.BaseAdapter;
    12. import android.widget.Button;
    13. import android.widget.EditText;
    14. import android.widget.ListView;
    15. import android.widget.TextView;
    16. public class TestAndroidActivity extends Activity {
    17. /** Called when the activity is first created. */
    18. private Button button,add;
    19. private TextView text;
    20. private ListView listview;
    21. public MyAdapter adapter;
    22. @Override
    23. public void onCreate(Bundle savedInstanceState) {
    24. super.onCreate(savedInstanceState);
    25. setContentView(R.layout.main);
    26. listview = (ListView) findViewById(R.id.listview);
    27. add = (Button) findViewById(R.id.add);
    28. adapter = new MyAdapter(this);
    29. listview.setAdapter(adapter);
    30. add.setOnClickListener(new OnClickListener() {
    31. @Override
    32. public void onClick(View arg0) {
    33. // TODO Auto-generated method stub
    34. adapter.arr.add("");
    35. adapter.notifyDataSetChanged();
    36. }
    37. });
    38. }
    39. private class MyAdapter extends BaseAdapter {
    40. private Context context;
    41. private LayoutInflater inflater;
    42. public ArrayList<String> arr;
    43. public MyAdapter(Context context) {
    44. super();
    45. this.context = context;
    46. inflater = LayoutInflater.from(context);
    47. arr = new ArrayList<String>();
    48. for(int i=0;i<3;i++){    //listview初始化3个子项
    49. arr.add("");
    50. }
    51. }
    52. @Override
    53. public int getCount() {
    54. // TODO Auto-generated method stub
    55. return arr.size();
    56. }
    57. @Override
    58. public Object getItem(int arg0) {
    59. // TODO Auto-generated method stub
    60. return arg0;
    61. }
    62. @Override
    63. public long getItemId(int arg0) {
    64. // TODO Auto-generated method stub
    65. return arg0;
    66. }
    67. @Override
    68. public View getView(final int position, View view, ViewGroup arg2) {
    69. // TODO Auto-generated method stub
    70. if(view == null){
    71. view = inflater.inflate(R.layout.list_item, null);
    72. }
    73. final EditText edit = (EditText) view.findViewById(R.id.edit);
    74. edit.setText(arr.get(position));    //在重构adapter的时候不至于数据错乱
    75. Button del = (Button) view.findViewById(R.id.del);
    76. edit.setOnFocusChangeListener(new OnFocusChangeListener() {
    77. @Override
    78. public void onFocusChange(View v, boolean hasFocus) {
    79. // TODO Auto-generated method stub
    80. if(arr.size()>0){
    81. arr.set(position, edit.getText().toString());
    82. }
    83. }
    84. });
    85. del.setOnClickListener(new OnClickListener() {
    86. @Override
    87. public void onClick(View arg0) {
    88. // TODO Auto-generated method stub
    89. //从集合中删除所删除项的EditText的内容
    90. arr.remove(position);
    91. adapter.notifyDataSetChanged();
    92. }
    93. });
    94. return view;
    95. }
    96. }
    97. }

http://blog.csdn.net/centralperk/article/details/7446726

上一篇:Python菜鸟之路:Python基础-逼格提升利器:装饰器Decorator


下一篇:Pattern Recognition And Machine Learning读书会前言