0

很长一段时间以来,我一直在努力寻找解决这个问题的方法。问题是代码不会删除列表视图中选择的项目。刷新列表后,它在 log cat 中说这是“id”的问题。谁能帮我找出原因?

名单

public class ListedesClient extends ListActivity  {

    TextView selectionc;
    public int idToModify; 
    ClientDataAdapter dm;

   String clientId;
    List<String[]> list = new ArrayList<String[]>();
    List<String[]> names2 =null ;
    ArrayList<String> stg1;
    protected void onCreate(Bundle savedInstanceState){
        super.onCreate(savedInstanceState);
        setContentView(R.layout.listeclients);
          dm = new ClientDataAdapter(this);
          names2 = dm.selectAll();

          stg1 = new ArrayList<String>();
          for (String[] name : names2) {
              stg = name[1]+"         "+name[2]+ "         "+name[3]; // error here
              stg1.add(stg);// error here two
             x++;// error here two
           }


        ArrayAdapter<String> adapter = new ArrayAdapter<String>(   
                this,android.R.layout.simple_list_item_1,   
                stg1);
        this.setListAdapter(adapter);
        selectionc=(TextView)findViewById(R.id.selectionc);

    }      

    public void onListItemClick(final ListView parent, View v, final int position, final long id) {

        selectionc.setText("Vous êtes sur : " + stg1[position]); //error here in stg1[position]

         AlertDialog.Builder builder = new AlertDialog.Builder(this)
         .setTitle("Delete Item")
         .setMessage("are you sure to delete?")
         .setPositiveButton("Yes",
                 new DialogInterface.OnClickListener() {

                     @Override
                     public void onClick(DialogInterface arg0, int arg1) {

                        // @-@ dm.delete(list.get(position));
                         dm.delete(id);

                         ArrayAdapter adapter = (ArrayAdapter)parent.getAdapter();
                         adapter.remove(stg1[position]);// same error 
                         adapter.notifyDataSetChanged();

                     }
             })
         .setNegativeButton("No",
                 new DialogInterface.OnClickListener() {

                     @Override
                     public void onClick(DialogInterface dialog,
                             int which) {
                         // TODO Auto-generated method stub
                         return;
                     }
             });
     builder.show();
    }
}

数据适配器...

public class ClientDataAdapter {
    private static final  String DATABASE_NAME = "clientbase.db";
    private static final int DATABASE_VERSION = 1;
    static final String TABLE_CLIENT = "clienttable";
    private static Context context;
    static SQLiteDatabase dc;
private SQLiteStatement insertStmt;

    private static final String INSERT = "insert into "
        + TABLE_CLIENT + " (nom_complet,adresse_client,numero_telephone) values (?,?,?)";

    public ClientDataAdapter(Context context) {
        ClientDataAdapter.context = context;
        OpenHelper openHelper = new OpenHelper(ClientDataAdapter.context);
        ClientDataAdapter.dc = openHelper.getWritableDatabase();
        this.insertStmt = ClientDataAdapter.dc.compileStatement(INSERT);
       }

    public long insert(String nom_complet,String adresse_client,String numero_telephone) {
        this.insertStmt.bindString(1, nom_complet);
        this.insertStmt.bindString(2, adresse_client);
        this.insertStmt.bindString(3, numero_telephone);
        return this.insertStmt.executeInsert();
    }

    public void deleteAll() {
        dc.delete(TABLE_CLIENT, null, null);
    }

    public ArrayList<String[]> selectAll()
    {

        ArrayList<String[]> list = new ArrayList<String[]>();
        Cursor cursor = dc.query(TABLE_CLIENT, new String[] { "_id","nom_complet","adresse_client","numero_telephone"},
                null, null, null, null, "nom_complet asc"); 

        int x=0;
        if (cursor.moveToFirst()) {
            do {
                String[] b1=new String[]{cursor.getString(0),cursor.getString(1),cursor.getString(2),cursor.getString(3)};

                list.add(b1);

                x=x+1;
            } while (cursor.moveToNext());
        }
        if (cursor != null && !cursor.isClosed()) {
            cursor.close();
        } 
        cursor.close();

        return list;
    }


    public boolean delete(long rowId) {

           return dc.delete(TABLE_CLIENT, BaseColumns._ID + "=" + rowId, null) > 0;

        }

    private static class OpenHelper extends SQLiteOpenHelper {

        OpenHelper(Context context) {
            super(context, DATABASE_NAME, null, DATABASE_VERSION);
        }

        @Override
        public void onCreate(SQLiteDatabase dc) {
            dc.execSQL("CREATE TABLE " + TABLE_CLIENT + " (_id INTEGER PRIMARY KEY, nom_complet TEXT NOT NULL, adresse_client TEXT NOT NULL, numero_telephone TEXT NOT NULL)");
        }

        @Override
        public void onUpgrade(SQLiteDatabase dc, int oldVersion, int newVersion) {
            dc.execSQL("DROP TABLE IF EXISTS " + TABLE_CLIENT);
            onCreate(dc);
        }
    }


}
4

2 回答 2

2

你使用 _id 作为列,但你没有它。您的创建查询是

 @Override
 public void onCreate(SQLiteDatabase dc) {
        dc.execSQL("CREATE TABLE " + TABLE_CLIENT + " (id INTEGER PRIMARY KEY, nom_complet TEXT NOT NULL, adresse_client TEXT NOT NULL, numero_telephone TEXT NOT NULL)");
 }

或者您更改 onCreate ( idfor _id) 中的查询,或id在删除查询中使用

public void onListItemClick(final ListView parent, View v, final int position, final long id) {

    selectionc.setText("Vous êtes sur : " + stg1[position]);

     AlertDialog.Builder builder = new AlertDialog.Builder(this)
     .setTitle("Delete Item")
     .setMessage("are you sure to delete?")
     .setPositiveButton("Yes",
             new DialogInterface.OnClickListener() {

                 @Override
                 public void onClick(DialogInterface arg0, int arg1) {

                    // @-@ dm.delete(list.get(position));
                     dm.delete(id);

                     ArrayAdapter adapter = (ArrayAdapter)parent.getAdapter();
                     adapter.remove(stg1.get(position));
                     adapter.notifyDataSetChanged();

                 }
         })

String[] 不是提交给 ArrayAdapter,而是传递一个 ArrayList

 int x = 0;
 String stg = "";
 stg1 = new ArrayList<String>();
 for (String[] name : names2) {
     stg = name[1]+"         "+name[2]+ "         "+name[3];
     stg1.add(stg);
     x++;
  }

当然 stg1 必须是一个 ArrayList

于 2013-06-08T13:30:21.553 回答
0

AbstractList'Itereator不支持删除。

迭代时不能修改该列表 for(:)。将有趣的项目或其索引保存在另一个列表中,完成迭代后将其删除。

于 2013-06-08T14:18:46.057 回答