web-dev-qa-db-fra.com

listView dynamique ajouter un élément

J'ai utilisé ListViewpour l'ajout dynamique, mais il y a un problème concernant le fait de ne pas ajouter Smooth. Il y a textView et un bouton dans ma listeActivity, Iwant to Press, puis le bouton TextViewname __ peut être ajouté automatiquement à ListViewname __, mais i Pressed button , cela ne fonctionne pas, sauf si après avoir entré le contenu, appuyez sur la touche "OK", puis sur le bouton Appui, le texte TextView's peut être ajouté automatiquement à ListViewname__. Je ne sais pas pourquoi. Si je continue d'appuyer sur le bouton, comme 3 fois, puis appuyez sur "Ok", le contenu

liste d'ajout automatique

Voir mais 3 fois.

 public class DynamicListItems extends ListActivity {
   private static final String   ITEM_KEY   = "key";
   ArrayList<HashMap<String, String>>   list= new ArrayList<HashMap<String, String>>();
private SimpleAdapter   adapter;
private EditText    newValue;@Override
public void onCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);
    setContentView(R.layout.dynamic_list);
    newValue = (EditText) findViewById(R.id.new_value_field);

    setListAdapter(new SimpleAdapter(this, list, R.layout.row, new String[] { ITEM_KEY }, new int[] { R.id.list_value }));
    ((ImageButton) findViewById(R.id.button)).setOnClickListener(getBtnClickListener());
}

private OnClickListener getBtnClickListener() {
    return new OnClickListener() {
        public void onClick(View view) {
            try {

                HashMap<String, String> item = new HashMap<String, String>();
                item.put(ITEM_KEY, newValue.getText().toString());
                list.add(item);

                adapter.notifyDataSetChanged();
            } catch (NullPointerException e) {
                Log.i("[Dynamic Items]", "Tried to add null value");
            }
        }
    };
   }}

Comment supprimer dynamiquement l'élément?

  • dynamic_list.xml ne contient que listView, button, textView
  • row.xml contient TextViewname__
15
pengwang

notifyDataSetChanged () méthode est utilisée pour mettre à jour l'adaptateur.

Ici, je poste une réponse de travail étape par étape.

Premier de main.xml fichier:

<?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" >

    <LinearLayout
        Android:layout_width="match_parent"
        Android:layout_height="wrap_content"
        Android:layout_alignParentBottom="true"
        Android:layout_centerHorizontal="true" 
        Android:id="@+id/input">

        <EditText
            Android:id="@+id/editText_input"
            Android:layout_width="wrap_content"
            Android:layout_height="wrap_content"
            Android:layout_weight="1"
            Android:ems="10" >

            <requestFocus />
        </EditText>

        <Button
            Android:id="@+id/button_add"
            Android:layout_width="wrap_content"
            Android:layout_height="wrap_content"
            Android:layout_weight="0"
            Android:text="Add" />
    </LinearLayout>


    <LinearLayout
        Android:layout_width="wrap_content"
        Android:layout_height="match_parent"
        Android:layout_above="@+id/input"
        Android:layout_alignParentTop="true"
        Android:layout_centerHorizontal="true"
        Android:orientation="vertical" >

        <ListView
            Android:id="@+id/listView_items"
            Android:layout_width="match_parent"
            Android:layout_height="wrap_content" >
        </ListView>

    </LinearLayout>

</RelativeLayout>

Ici MainActivity.Java :

import Java.util.ArrayList;

import Android.app.Activity;
import Android.os.Bundle;
import Android.view.KeyEvent;
import Android.view.View;
import Android.widget.ArrayAdapter;
import Android.widget.Button;
import Android.widget.EditText;
import Android.widget.ListView;

public class MainActivity extends Activity {
    private EditText etInput;
    private Button btnAdd;
    private ListView lvItem;
    private ArrayList<String> itemArrey;
    private ArrayAdapter<String> itemAdapter;

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.dyanamic_list);
        setUpView();

    }

    private void setUpView() {
        etInput = (EditText)this.findViewById(R.id.editText_input);
        btnAdd = (Button)this.findViewById(R.id.button_add);
        lvItem = (ListView)this.findViewById(R.id.listView_items);

        itemArrey = new ArrayList<String>();
        itemArrey.clear();

        itemAdapter = new ArrayAdapter<String>(this, Android.R.layout.simple_list_item_1,itemArrey);
        lvItem.setAdapter(itemAdapter);

        btnAdd.setOnClickListener(new View.OnClickListener() {
            public void onClick(View v) {
                addItemList();
            }
        });

        etInput.setOnKeyListener(new View.OnKeyListener() {
            public boolean onKey(View v, int keyCode, KeyEvent event) {
                if (keyCode == KeyEvent.KEYCODE_ENTER) {
                    addItemList();
                }
                return true;
            }
        });
    }

    protected void addItemList() {
        if (isInputValid(etInput)) {
            itemArrey.add(0,etInput.getText().toString());
            etInput.setText("");
            itemAdapter.notifyDataSetChanged();
        }   
    }

    protected boolean isInputValid(EditText etInput2) {
        if (etInput2.getText().toString().trim().length()<1) {
            etInput2.setError("Please Enter Item");
            return false;
        } else {
            return true;
        }
    }
}
19
Dwivedi Ji

Votre méthode getBtnClickListener fait-elle partie de la classe ListActivity ou ArrayAdapter?

Pour moi, quand je mets à jour à partir de la classe ListActivity, j'utilise ce code ...

// code to add a Contact to my database
// code to add a Contact to the list that
//   that is used by the ListView
setListAdapter(adapter);
getListView().setTextFilterEnabled(true);

Lorsque je mets à jour à partir d'une méthode de la classe ArrayAdapter, j'utilise ce code ...

 // from a LongPress on a ListView item
 convertView.setOnLongClickListener(new OnLongClickListener(){
     @Override
     public boolean onLongClick(View view) {
         view.performHapticFeedback(0, View.HAPTIC_FEEDBACK_ENABLED);
         // code to remove a Contact name from my database
         // code to remove that Contact name from my list
         //    that is used by the ListView
         ContactsAdapter.this.notifyDataSetChanged();
         return true;
     });
2
Ryan Alford

J'utilise un fil pour ajouter plus de données à ma liste en arrière-plan, puis notifydatasetchange, cela fonctionne correctement

Voici le code complet: http://code.google.com/p/dynamic-listview/source/checkout

1
Tai Tran

Oui !!, la méthode notifyDataSetChanged () appliquée dans ArrayAdapter avant que vous le remplissiez était la solution pour moi. Lecture de Firebase.

Objets

    private DatabaseReference myRef;
    ArrayList<String> lista;
    ArrayAdapter<String> adapter;

OnCreate

    FirebaseDatabase database = FirebaseDatabase.getInstance();
    myRef = database.getReference("chat");

    //GETTIN MY DATA TO SHOW IN CHAT
    lista = new ArrayList<String>();

Pour résumer

    myRef.addValueEventListener(new ValueEventListener() {
        @Override
        public void onDataChange(DataSnapshot dataSnapshot) {
            for (DataSnapshot postSnappy : dataSnapshot.getChildren()){
                for (DataSnapshot rePostSnappy : postSnappy.getChildren()){
                    // Defined Array values to show in ListView
                    lista.add(new String(rePostSnappy.getValue().toString()));
                    adapter.notifyDataSetChanged();//Notyfing adapter that will goes to change
                }
            }
        }

        @Override
        public void onCancelled(DatabaseError databaseError) {

        }
    });

    adapter = new ArrayAdapter<String>(this,
            Android.R.layout.simple_list_item_1, lista);

    ListView listVista = (ListView) findViewById(R.id.list);
    listVista.setAdapter(adapter);
0
Mario Alzate