Android :: Disable 2G And 3G Networks
Oct 30, 2009
I am developing an application that is used for a sort of tournaments. The requirements are that if the application is running it should be impossible to make and receive phone calls. Can I disable 2G/3G from within my app? (Airplane mode is no option, because I still need GPS).
View 2 Replies
Jul 2, 2010
I'm currently writing on some piece of code in android 2.1 that is supposed to measure the signal strength of the gsm signals. what i need is some kind of list with some kind of network IDs matching the corresponding signal strengths.
View 1 Replies
View Related
Oct 14, 2010
I am initiating the design of an application that would require an Android phone to connect to another Android phone via Ad-Hoc networking with or w/o security. I would like to know if Android supports ad-hoc networking. I would also like to know what is the average range of the wifi signal from an Android handset point-to-point with no obstructions. I cannot find any information about this on the web.
View 10 Replies
View Related
Sep 25, 2009
A Wi-Fi device running Android looks like being able to connect to a secured Wi-Fi access point using WEP, WPA, etc. I actually can't figure how to setup a "WPA Enterprise" secured Wi-Fi connection wich requires a certificate. I can't find a way to import a security certificate. I went to "Settings" app, "Wireless controls" menu, "Wi-Fi settings" menu, clicked the "Advanced" menu, "Security certificates" menu, clicked "Add certificates" menu to get an empty list. I tried to put the .cer file on the SD card but the list is still empty.
View 4 Replies
View Related
Sep 15, 2010
Currently I have 2 mobile networks for my mobile say they are A and B. Is there a way to automatically detect the mobile networks if there are A and B then choose A? Or just simply choose A no matter whether there is B available? I want to search for GSM networks operators
available and select the preferred one.
View 1 Replies
View Related
Nov 17, 2009
Is there any widget in the market that supports all major social networks (facebook, myspace, twitter). Sort of like that "happening" widget for the hero?
View 2 Replies
View Related
Jun 5, 2010
I'm trying to scan for wireless networks and found this helpful source on the net. Unfortunately it's not working and I have no idea why. My problem is that I can't wait 10 minutes for the result - I need them within a few seconds and thought about setting the boolean variable waiting on false as soon as I get a result, well it runs forever. Looks like nothing is received.
// -- Sample WiFi implementation - http://groups.google.com/group/android-developers/browse_thread/thread/f722d5f90cfae69 IntentFilter i = new IntentFilter();
i.addAction(WifiManager.SCAN_RESULTS_AVAILABLE_ACTION);
registerReceiver(new BroadcastReceiver(){
@Override public void onReceive(Context c, Intent i){
// Code to execute when SCAN_RESULTS_AVAILABLE_ACTION event occurs
mWifiManager = (WifiManager) c.getSystemService(Context.WIFI_SERVICE);
wireless = mWifiManager.getScanResults(); // Returns a <list> of scanResults
waiting = false;
} } ,i);
// -- End Wifi Sample mWifiManager.startScan();
while (waiting) { try { Thread.sleep(200);
} catch (InterruptedException e) {
// TODO Auto-generated catch block e.printStackTrace();
} Log.d("PROJECT1","Wifi WAITING");
}
View 4 Replies
View Related
May 26, 2010
I'm developing sort of a wireless scanner, so I need to scan every X seconds. I know I should use WifiManager and startScan() to get the networks and then register a receiver to receive the event once the scan has finished. However I'm having problems when trying to figure out how to scan periodically. It's more like a design problem. My solution so far has been to create a Service which takes care of the scanning, besides the main Activity.
I think this is correct. So, how could I tell this Service to scan every X seconds? I've thought it may have a Thread object, call its Scan method during tart_services() and then take it to sleep. Also I thought I could just get rid of the Service and run the Thread from the main Activity, but then I guess it would die whenever the Activity is not visible. None of then seem like a really good solution to me, and I think there must be an easier way to do this.
View 6 Replies
View Related
Jul 3, 2010
I want to download an image from the 'net and set it as the users background. This works great over wi-fi, and some 3G networks, but others (T-Mobile UK, for sure) seem to compress the images before sending them. This effect is noticeable when using the browser, too - however, if you long press on an image and save it, when viewing in the gallery it is either not compressed at all, or substantially less so. I want to be able to do this in my own app.I assume it has something to do with the HTTP headers, but of the ones I've modified, none has made a difference.
View 2 Replies
View Related
Jul 8, 2009
I am planning to give mobile phone development a shot and was thinking about making some simple multiplayer games. I know latency over local wifi is probably fine but what are the issues with latency over GPRS/3G?
I've searched and the best I've seen is someone saying it was 'high', without presenting any concrete numbers. I suppose latency fluctuations are important as well - does anyone have any info on this?
View 2 Replies
View Related
Aug 9, 2010
I am programming for google android and I wonder if the scans for wireless 802.11 networks are done passively or actively? I mean: Does the device actually emit a beacon request signal on
WifiManager.startScan()
Or does it just listen for beacons sent periodically by the access points?
View 1 Replies
View Related
Jul 13, 2010
We have an application where we'd like to use the WiFi connection on a local network (intranet) with no Internet connectivity, and use the 3G connection simultaneously as the data connection to the internet. To summarize:
We need to connect to two distinct networks at the same time - We need data traffic to be properly routed to the appropriate network based on its IP address - We need both radios (WiFi and 3G) on and active. This can easily be done on the iPhone, but not sure if it can be done on the Android.
View 21 Replies
View Related
Sep 17, 2010
If I use getScanResult() I will be able to get the information about different networks but for example if I am in a school where all access points are under network (SSID) "The school". Will getScanResult() filter out other access points than the one it's closest to and only return 1 BSSID for that network?
View 2 Replies
View Related
Apr 30, 2010
I'm looking for an app that will automatically enable my wifi for designated networks. Basically, the only location currently I really desire to use wifi is at home since if I'm at home, my phone is likely charging (since wifi eats battery) and the speed beats 3G. I'm going through appbrain.com and finding a lot of apps that automatically scan and connect to open networks, automatically connect to the fastest network, a bunch of wifi toggle widgets...nothing really for making conditions for what networks it will connect to, especially one that has a password.
View 4 Replies
View Related
May 17, 2010
I'm downloaded several wifi apps, but I'm looking for one that will automatically connect to open networks.
Or at least to saved/remembered networks without me having to scan and connect.
View 3 Replies
View Related
Aug 2, 2010
Anybody know an app that can control what to sync, and what not to sync on a WiFi network. I would like my hero only to sync exchange when at work.
View 1 Replies
View Related
May 12, 2010
I am about to build my own dialog to notifiy the user the app doesn't reach the internet, and I am planning to put two buttons on it. Settings, and Cancel as it is seen in many other apps.
I am wondering now, How do I launch settings directly on Wireless & networks page?
View 1 Replies
View Related
May 9, 2010
Does anyone knows if the wifi networks for android phones are based on Access Point Names (APN) ? I ask because in my android application I plan to overwrite some fields in all APN's to disable cellular network, but I still want to have available the wifi for the user.
View 1 Replies
View Related
Mar 24, 2013
That's basically the problem. My Visual Land Prestige 10 Android 4.0 10" Tablet i got from WalMart readily connects to all kinds of public wi-fi networks with no problems. BUT it will not connect to my home wi-fi network, which is from Cox Cable via a Linksys router.
I have several other devices, including a Palm Tablet, a Galaxy S3, and an Asus laptop, and all of these connect to my home wi-fi with no problem.
So why does my tablet not do so? It recognizes the existence of the wi-fi network, but never connects. It just says "saved", and that's it.
View 1 Replies
View Related
Jul 25, 2010
I'm about to purchase an HTC Desire after it comes out (I'm in Canada) and wanted to know if you can only set the phone to connect to one Wi-Fi network or if I can set multiple networks so the more places I go, like a friends house, I use less data.
View 4 Replies
View Related
May 9, 2010
My WiFi doesn't reach upstairs in my house, and for that reason, I have a wired connection that comes upstairs. I set my laptop up to share the wired internet connection through an AdHoc for other devices...except my Incredible. Kinda weird that Google didn't have this feature built in without having to root the phone. Does anyone know a way to connect to an AdHoc?
View 1 Replies
View Related
May 23, 2010
Does anyone know if this is a real battery eater and is it worth switching off?
View 19 Replies
View Related
Jun 27, 2010
I'm wondering if there is an app out there that i can use to set time for the mobile network to be on and off. I.E i want it turned off while i sleep and on during the day, i know i can do it manually but i keep forgetting and using up more of my allocation that i need to.
View 2 Replies
View Related
Aug 9, 2010
I was wondering if its possible to "upgrade" my phone to support different networks? (ie. I have the Desire HongKong, which supports 850/1900 HPSA, but want to know if there is an upgrade I can perform to support more/different networks? Say 900/2100 HSPA?
View 1 Replies
View Related
Jul 16, 2010
I got 2 Sprint HTC Heros 3 wks ago. They work fine with any WiFi network that shows up as available. Other WiFi networks are completely ignored and do not show up in the list of available networks. I installed WiFi Analyzer and it is also prevented from seeing the same "invisible" networks. One WiFi network which does not show up is my home network. Last weekend I was at a B&B in another state and had the same problem with their network. Their network was up and running and visible to other hardware but not to our Heros.
Our home WiFi router is a Linksys WRT110 running WPA-2 Personal AES. There typically are three devices on this network: 2 @ g and 1 @ n. I have seen other WPA-2 Personal networks show up as Available while traveling but have no idea what routers were used. I called Sprint support and eventually got to someone in Tech support who put me on hold after I explained the symptoms. 20 min later the call was dropped. So much for Sprint tech support .
View 5 Replies
View Related
Nov 10, 2009
I got the Hero on 3UK yesterday. As soon as I booted it up it found a number of wireless networks and I was able to connect to my BeBox with no problems. Later on last night and continuing today, it can't find any networks in range. It shows the BeBox as 'remembered' but not in range. Even tho I'm obviously sitting near it. I've rebooted the phone today and no change. I installed the Fonera application yesterday and thought it might be causing problems so disabled it and still the problem was there.
View 2 Replies
View Related
Sep 8, 2010
Now I wish there was a way to connect my Non-Rooted Froyo Incredible to Ad-Hoc WiFi networks, but I can't seem to find a way. Does anyone know of any ways to connect my Incredible to my Ad-Hoc WiFi networks? Because that would be the only reason I would root my incredible, but I wouldn't do it if there wasn't a solution available.
View 4 Replies
View Related
Nov 8, 2010
As said in the title, my dad just received his new desire HD from Vodaphone and tasked me with setting it up. I was expecting it to be a diddle as I have had a desire NON HD with virgin back in June and it was easy to set up. Anyways turned it on and selected vodaphone with his Sim - didn't work so I put mine in and selected virgin but lo and behold no networks, just wifi.
View 4 Replies
View Related
Dec 24, 2013
I live in border area of my state, ,so that is also the border of my telecom operator. Every time I search my home network, after some time it automatically select the roaming network. Is any app available for keeping mobile network in manual mode or any other way to prevent searching mobile network in automatically?
View 4 Replies
View Related
Oct 2, 2010
My SGS (well its actually my wife's but I use it also) will not connect to WiFi networks, other than the one we have at home. If we are out, the phone will be able to see lots of WiFi networks, but it cannot connect to any of them as it says the signal is poor. Other people can be sat right next to other with other phones and have no problem connecting and they have strong signals. At home it will connect, but even then there is only one bar of signal, even though the router is in the same room. It appears that the phone just cannot get a strong enough signal to connect.
View 1 Replies
View Related