Android :: Need WiFi App To Choose Which Networks Phone Will Connect To

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.

Android :: Need WiFi app to choose which networks phone will connect to


Android : Best Wifi App That Automatically Connect To Open Networks?

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

Samsung Galaxy S :: Cannot Connect To WiFi Networks

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

HTC Hero :: Cant Connect To Any Open Networks Via WiFi

Jul 11, 2010

OK I cant connect to any open networks via WiFi, I have set up fine on my home network..M i missing something. Also i couldn't get this to work with the stock orange 1.5, but didn't really explore why either. As i was ok with home use. I am traveling away from home more now and would like to connect to a open network. I have asked if i need a password and username but still no joy.. Is it a safety measure from orange i need to unable?

View 4 Replies View Related

Sony Ericsson Xperia X10 :: How To Connect To Wifi Networks

Aug 11, 2010

For some reason my wifi wont conect to my homes wifi as of last night? i have had the x10 months and had no problems but my girlfriend bought the x10 mini yesturday, showed her how to connect it up to wifi networks i.e my own home one, then since that my x10 will not connect to mine an say unsuccessful even tho it will connect to any others. as it is very annoying having to boot the pc up to get on the web.

View 2 Replies View Related

HTC Droid Eris :: Wifi Wont Automatically Connect Unless Viewing List Of Networks

Jun 26, 2010

I'm having an issue with my wifi not connecting. I have to AP's in my house, on different channels. They work perfectly fine. I have the wifi toggle setting on the home screen that I usually press to toggle the wifi on/off. Recently, it hasn't been working after I disconnect from 3G and connect to wifi. It says the wifi is turned on, but it won't connect to either of the remembered APs. The only way to get it to automatically connect is to go to settings and view the list of APs. Only then will it connect to one of the two APs. This is really annoying, as it seemed to only start this recently and nothing has changed. My wifi sleep policy is never to turn off. It's a droid eris with 2.1 OTA. Ran a virus scan, nothing. Any ideas?

View 3 Replies View Related

Android :: Able To Connect To WPA Enterprise Wi-Fi Networks?

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

HTC Desire :: How Many Wi-Fi Networks Can I Connect To?

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

HTC Incredible :: Way To Connect To An Ad Hoc Networks

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

Android :: WiFi Range And Ad-Hoc Networks

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

Connect Android Phone To PC Via WiFi Login To Get Data Into Phone

Jun 28, 2012

im new to android programming ...here is my problem:

i need to create an android app(for user) that have a login function to login to computer to retrieve some data (eg get data from a excel file) by using WIFI. How do i do that?

e.g Login: newbi123

----After login-----

i will get the data on my login id(newbi123) from the computer to my android app and display:

e.g
Name: newbi123
Gender: F
Age: 20
etc...

View 1 Replies View Related

Android :: Scan For WiFi Networks Not Working

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

Android :: Scan For WiFi Networks Done Passively Or Actively?

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

Android :: Connecting To 3G And WiFi Data Networks Simultaneously?

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

Android :: Phone Does Not Automatically Connect To Home WiFi

Mar 25, 2010

If I connect to my home WiFi, it works well. I'll go out of the house and come back a few hours later and the phone does not automatically connect to my home WiFi. If I go to settings, I can see it detects my home WiFi, but says "Connection unsuccessful, select to try again." When I select it, it connects and works fine. My problem is, I don't think I should have to physically select my WiFi network everytime I come home. Shouldn't it see it and connect automatically? What am I dong wrong? Do I have a setting turned on/off that should be different?

View 3 Replies View Related

General :: Android TV Box - Cannot Connect To It Via WiFi From Phone Or Laptop

Mar 22, 2014

I have just bought an Android Smart TV Box (to replace my AC Ryan media box which gave up the ghost a few days ago) and it mostly works fine - it is connected to my tv via hdmi and the box is hard wired to my router - so it is the standard connection setup. I have two usb hard drives connected to it. I obviously want to drag and drop media files from my phone (android) or my laptop (Windows7) to the connected hard drives I use ES Explorer app on my phone and Windows explorer but using either version I cannot see the Android box wirelessly - if i do a scan using es explorer it finds the laptop straight away and i can drag and drop but it just will not find the android box at all. However if i go onto the Android box and into the es explorer app and do a scan it picks up the laptop and i can drag and drop a file onto the laptop. So the wireless is sort of working as opposed to not at all. But just seems odd that i cant see it at all - i cant even ping it from the laptop.

View 7 Replies View Related

Android :: Application To Control WiFi Networks To Sync Exchange?

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

Motorola Droid :: Automaticly Choose The Best Between Wifi Or 3g

Jan 7, 2010

How do i use wifi on my droid? does it automaticly choose the best between wifi or 3g when i get on the net? if im on the net how do i know which one im using (wifi or 3g?) does an icon show which one is in use? Also is wifi better than 3g?

View 4 Replies View Related

Sprint HTC Hero :: Some WiFi Networks Not Available

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

HTC Hero :: WiFi Networks Not In Range?

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

HTC Incredible :: Connecting To Ad-Hoc WiFi Networks

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

Android :: Free Droid Software / Allows Phone To Connect With PC Wirelessly Via WiFi?

Oct 1, 2010

Is there anyone can recommend me a free Android Software of Android phone as I just got a new phone. I really need it to manage my photos , music, videos , contacts, message, calendar... and so on. This software should allows the Android phone to connect with PC wirelessly via WiFi.

View 2 Replies View Related

HTC Desire : Connect Phone To PC Via Wifi?

Jul 3, 2010

Can anybody tell me how to connect my Desire to my PC using wifi. I am sorry if this is a simple question but I am new to smartphones in general and Htc Android Desire in particular.

View 4 Replies View Related

General :: Phone Won't Connect To WiFi?

Dec 26, 2012

my HTC One X. Starting earlier today, my phone refuses to connect to my wireless internet in my house. I thought it may have been because of the snow outside, but ny computer has no problem connecting. My phone just constantly says "obtaining IP address"

View 1 Replies View Related

Android :: Wifi Networks For Droid Phones Based On Access Point Names?

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

HTC Desire :: Unable To Detect Some WiFi Networks?

Nov 7, 2010

The wireless network in my area follows the EALP/PEAP protocol which isn't supported on Android phones. So, I tried setting up local WiFi hotspots from my laptop to enable WiFi. But my phone doesn't detect that wireless network at all. My friend's Nokia E51 detects the hotspot, but not my HTC Desire. I tried detecting hotspots created from other laptops but the result remains the same. The E51 detects it but the Desire does not. Do I have to change some settings that I am unaware of?

View 5 Replies View Related

HTC Incredible :: Different WiFi Networks And Battery Life?

Sep 4, 2010

I started using WiFi exclusively at home and my office after reading about the benefits on here. I noticed a tremendous increase in battery life. But when I'm on WiFi at my gf's parents house, the battery drain isn't even about the same as 3G it seems like it is much worse. What could be causing this? The signal strength is often better at this location than home/office so that shouldn't be the problem.

View 7 Replies View Related

General :: WiFi / Unable To Scan For Networks

Mar 18, 2013

In Jan. I switched from Sprint to a different carrier and got a new phone with the new carrier which left me with my HTC Evo 4G and I've been trying to use the Wifi so I can use it at work or at home when I don't feel like using my laptop and whenever I try to turn my WiFi on it just turns on then off and tells me "Unable to scan for networks".

I've noticed that it says that my IP address is unknown and Bluetooth isn't working either. I did a factory reset on my phone and all that did was delete my Doctor Who background.

Sidenote: my husband was on my family plan and he had the same phone with the same service and his WiFi is working fine.

View 3 Replies View Related

General :: WiFi Unable To Scan For Networks

Apr 20, 2012

After rooting with DooMLoRD v4 tool my china A6380 Android 2.3, which has mt6516 416MHz and Android 2.2.1 instead, wifi stopped working.

Tried unroot and factory reset but no luck, still "Unable to scan for networks".

logcat follows:

D/AudioStreamHandler( 51): Asm_Afe_Start(ASM_AFE_MODE_NORMAL)
I/WifiProxyDialog( 213): >>> onReceive()
I/WifiProxyDialog( 213): >>> handleWifiStateChange()
D/AudioYusuHardware( 51): setMasterVolume=1.000000, avaliable device=2
D/AudioYusuHardware( 51): Audio_Match_Output_device mRoutes = 2 mMode = 0 Mode = 0 CheckForceUse 1 mOuputForceuse[Mode] = 0

[Code] .......

View 1 Replies View Related

General :: No Push Notifications On Certain WiFi Networks

Sep 6, 2011

The problem I'm experiencing is that I am not receiving push notifications of any kind while my phone is locked/sleeping (screen off) on my wifi network at work.

My home wifi network and mobile connection have no such problems, i get the notifications instantly. My wifi is set to never sleep.

I do get the notifications a couple of seconds after I unlock my phone though. Not very useful because I have to keep checking my phone.

Not sure if this has anything to do with it but my home network is WEP secured and work is WPA/WPA2 secured.

View 4 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved