将数据添加到listview

时间:2015-08-20 16:42:14

标签: android listview

当我将我的应用程序从eclipse移动到android studio时。我在这部分代码中有错误: @Override protected void onProgressUpdate(String... values) { super.onProgressUpdate(values); try { updateTxt( values[0] + values[1] + values[2] ); G.database.execSQL("UPDATE app SET app_name ='" + values[1] + "' WHERE app_id = '" + values[0] + "'"); Toast.makeText(G.context, values[0] + values[1] + values[2], Toast.LENGTH_SHORT).show(); } catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); } } } protected void updateTxt(String atxt) { TextView txt = (TextView) findViewById(R.id.textView); txt.append(atxt); } Addlist是Listview小部件

AddList.Add(Add);

1 个答案:

答案 0 :(得分:0)

显示适配器的代码。 我认为在AddList中添加广告后,您应该通知您的适配器数据集已更改功能。

adapter.notifiDataSetChanged();