I'm writing an app to view all wifi connections that are present. So far, i got it to to work somewhat. When you press the submit button, you get a list of wifi connections, if you press it again, it will update the connections / values. However any time you press it after that, the values dont update no more. If someone could take a look at my method and lead me in the right direction, that would be great. The source of the trouble is:
private void submitButton() { // Method that checks connections
wInfo = wifi.getConnectionInfo();
table.removeAllViewsInLayout(); // used to clear the table of the last update
if(wifi.isWifiEnabled()){ // Check to make sure wifi is actually on
List<ScanResult> sr = wifi.getScanResults();
for(ScanResult scan : sr){
// Custom Class to cut down on code
TableAdapter ta = new TableAdapter(this, table);
ta.addTableRow();
ta.addImage(wifi, scan);
ta.addTvN(this, scan);
ta.addTvSi(this, scan);
ta.addTvSp(this);
ta.construct(); // Same as addView(Ojbect to add to view)
}
Thanks in advance!