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!

link|improve this question

if you need more of the code to look at, just let me know, i'll happily post it. – Android Student Sep 20 '11 at 23:34
When you say that the values don't update anymore, what is it that is not updating, specifically? – Juxtaposition Sep 21 '11 at 2:16
The rows ta.addTableRow(); The images ta.addImage(); The network names ta.TvN(); and the Strength of the signal ta.TvSi(); the ta.addTvSp is just a spacer for now. – Android Student Sep 21 '11 at 2:25
what is 'wInfo' about? it's referenced at the first line but nothing afterwards. Also, when it stops updating does it return the same old results or null? – Juxtaposition Sep 21 '11 at 2:32
that is used for the connection info that the device is currently connected to. In this segment of the code, i suppose it is useless, because the same information is accuired throught the ScanResult List. As you can probably tell, im very new at this but im trying :) – Android Student Sep 21 '11 at 2:49
show 3 more comments
feedback

1 Answer

up vote 1 down vote accepted

Every time you want to retrieve new access point information you need to invoke WifiManager.startScan().

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.