带有 ArrayList 和 ListView 的 Android Array Adapter 在数组列表更改时不会更新
我有一个Android应用程序,其屏幕由ListView组成,我用它来显示设备列表。这些设备保存在阵列中。
我正在尝试使用ArrayAdapter在列表中显示屏幕上数组中的内容。
当我第一次加载 SetupActivity 类时,它可以工作,但是,在 addDevice() 方法中可以添加新设备,这意味着保存设备的数组已更新。
我正在使用 notifyDataSetChanged(), 它应该更新列表,但它似乎不起作用。
public class SetupActivity extends Activity
{
private ArrayList<Device> deviceList;
private ArrayAdapter<Device> arrayAdapter;
private ListView listView;
private DevicesAdapter devicesAdapter;
private Context context;
public void onCreate(Bundle savedInstanceState) //Method run when the activity is created
{
super.onCreate(savedInstanceState);
setContentView(R.layout.setup); //Set the layout
context = getApplicationContext(); //Get the screen
listView = (ListView)findViewById(R.id.listView);
deviceList = new ArrayList<Device>();
deviceList = populateDeviceList(); //Get all the devices into the list
arrayAdapter = new ArrayAdapter<Device>(this, android.R.layout.simple_list_item_1, deviceList);
listView.setAdapter(arrayAdapter);
}
protected void addDevice() //Add device Method (Simplified)
{
deviceList = createNewDeviceList(); //Add device to the list and returns an updated list
arrayAdapter.notifyDataSetChanged(); //Update the list
}
}
有人能看到我哪里错了吗?