У меня есть приложение для 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
}
}
Кто-нибудь может увидеть, где я ошибаюсь?