I have developed an app for my private use (i.e. not going to the AppStore) that uses the private WiFiManager framework found in iPhone OS 3.x. I have no troubles scanning for networks and binding with them. However, I am connecting to an ad hoc network so I have to sit around and wait while the interface assigns a default ip address to ...
I am currently trying to write a class in Android that will Scan for access points, calculate which access point has the best signal and then connect to that access point.
So the application will be able to scan on the move and attach to new access points on the go.
I have the scanning and calculation of the best signal working.
But w...
I am trying to use the Wifimanager to calculate the Signal Level of the access points found during a scan.
I am using the following method:
WifiManager.calculateSignalLevel(int, int)
But it appears to always return the same int no matter what the RSSI level is.
Here is my code:
public int calculateQoS(int aRSSI){
signalLevel ...
I was wondering is it possible to get a notification of when a new configured network is added to the WifiManager in Android?
I know you can get the current list of configured networks
getConfiguredNetworks
But is it possible to get notification of when a new one is added?
I dont see anything in the WifiManager that would be helpful....
I read on google that this is not possible, and that on OS 2.0, it was some undocumented Api to accomplish that, but then your app will got rejected ....
we are almosto on OS 4.0....any news regarding this?
...
Hi,
I want to know how can i filter the hotspot is secured or public using Android WIFI API or android sdk?
Regards,
Rajendar
...
For some reasons, this ain't working:
wifi = (WifiManager) getSystemService(Context.WIFI_SERVICE);
if(wifi.isWifiEnabled())
{
tvStatus.setText("You WiFi is enabled");
}
else
{
tvStatus.setText("You WiFi is disabled");
}
Why aint this working, am i missing something?
And it compiles and ever...
Hi,
I am not able to get,
What is the purpose of Creating the MulticastLock used with WifiManager in android.
Can any body clarify me what exactly it means and when to use...
Any help much appreciated..
thanks
rakesh
...
I don't want my user to even try downloading something unless they have wifi connected. However I can only seem to be able to tell if wifi is enabled, but they could still have a 3g connection.
android.net.wifi.WifiManager m = (WifiManager) getSystemService(WIFI_SERVICE);
android.net.wifi.SupplicantState s = m.getConnectionInfo().get...
How to connect android phone to wifi network setup on macbook pro?
...