Questions tagged [signal-strength]
155 questions
0
votes
1 answer
Code not refreshing every few second
I am trying to find the signal strength from wifi. I want to take 5 samples of signal strength. So, I have kept a timer that will help me make code run every second. The code I have written is shown below.
The output i get is:
getting called…

smith willy
- 73
- 10
0
votes
1 answer
iOS code understanding for MobileWifi Framework
I want to implement the code on :
http://iphonedevwiki.net/index.php/MobileWiFi.framework
I am a newbie to IOS development. I have just coded hello world and I need to implement signal strength from wifi using "Private apis".
I have five files :…

smith willy
- 73
- 10
0
votes
1 answer
Is there a way to get Signal Strength from Iphone?
Is there a way to get Signal strength from Iphone using wifi ?
I know that Public API's do not allow. Istumbler allows it. But it is closed.
With the Private API's is it possible ? I do not want to keep on app store, so I do not mind that.
Would…

smith willy
- 73
- 10
0
votes
1 answer
Signal Strength not refreshing every few seconds
I have a code which tells me the signal strength from the wifi. Now, I wished that it should refresh every 5 seconds and tell me the new signal strength.
It gives a set of signal strength 5 times and every time it gives me the same signal…

smith willy
- 73
- 10
0
votes
1 answer
Force closing forcefully when trying to get signal strength in Android
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
WifiManager mainWifiObj;
mainWifiObj = (WifiManager)…

Xylo_matic
- 163
- 1
- 2
- 10
0
votes
0 answers
Retrieving signal strengh values from oncreate method
how to retrieve the value of strengthAmplitude at oncreate method inside Activity.
private class SignalStrengthListener extends PhoneStateListener
{
@Override
public void…

abecedarian
- 3
- 2
0
votes
1 answer
Getting location information of Android phones connected to a wifi access point
I am trying to get the location information of Android phones connected to a particular wifi access point/hotspot which is another Android device. I know how to obtain location information for a particular Android device using the Location API as…

user3105953
- 1
- 1
0
votes
1 answer
Android Check if network signal strength is low
I am working on an android app which keeps checking my location using GPS and automatically stops recording if not moving for more than 3 mins.
But sometimes may be due to poor signal it is not able to stop automatically.
is there anyway to…

shining
- 11
- 3
0
votes
1 answer
Getting a list of signal strength in android
I am trying to get a list of signal strength (both cellular and wifi) in an android device.
Do i achieve this using the Signal Strength class ?http://developer.android.com/reference/android/telephony/SignalStrength.html

user2054702
- 69
- 1
- 11
0
votes
1 answer
My PhoneStateListener is not being called for showing signal strength
I am trying to show the current signal strength and current cell ID and Lac in my application for 3g network. Since it has to be compatible for API-8, I am using SignalStrength class from android.telephony. When I click a button, for now I want it…

Lutful Kabir
- 3
- 1
- 6
0
votes
1 answer
location of a mobile device using only mobile signal strength?
can an app be written to get the approximate location of a mobile device using only mobile signal strength from different mobile towers? I mean is this data accessible to developers or restricted to the service provider?
user1868541
0
votes
2 answers
WiFi Signal Strength function with compile errors
I'm using a function to return the current WiFi signal strength value given here: http://www.dotnet247.com/247reference/msgs/42/211278.aspx
When I run the code in Visual Studio 2008, I get the compile errors:
Type of namespace…

J.C.Morris
- 803
- 3
- 13
- 26
0
votes
2 answers
Android : NeighboringCellInfo
NeighboringCellInfo() on Android API, I want to know this function return all neighbor cell?
And one of result is current cell which our device connected?
Thanks so much.

Jack iPhone
- 41
- 2
- 5
-1
votes
1 answer
Is Signal Strength accurate?
So my question is to ask if Signal Strength is accurate ?
this is how I calculated my DBM
public void onSignalStrengthsChanged(SignalStrength signalStrengths) {
super.onSignalStrengthsChanged(signalStrengths);
int…

UserBlanko
- 202
- 2
- 12
-1
votes
2 answers
How is telephony signal strength updated to UI in android
i went though the following post to get the signal strength in android:
How to get cell service signal strength in Android?
my ques is that: how does the signal strength gets updated to the system UI. what does each bar in the strength meter…

Sid
- 79
- 1
- 9