HTC EVO 4G :: Sharing Wifi Data

Jun 5, 2010

Has anyone tried sharing a wifi connection through the evo? I have a really old laptop without a wireless card and would like to be able to pick up wifi signal from my router with evo and use usb to share with my pc. Haven't tried yet and will when i get home bit just wondering if anyone had tried this or knows if it'll work.

HTC EVO 4G :: Sharing wifi data


Android :: Sharing Wifi With Bluetooth Or Wifi?

Jul 28, 2010

I have a single user access to a Wifi device on my macbook. I'd like to use my HTC evo and sisters iPhone on the Wifi also. Is there any way I can broadcast the wifi from one of my devices. I know if I had my laptop hardwired I could share the Wifi, but I've not found anything to do Wifi to Wifi. or Wifi to Bluetooth. Any know, I don't have data plans on the cell phones as I am out of town.

View 1 Replies View Related

HTC Tattoo :: Sharing PC Internet - Using WiFi

Jun 26, 2010

I recently bought a HTC Tattoo. And I like to access internet on Tattoo using PC broadband connection. I have ASUS motherboard with inbuild WiFi support. So, using that I have made my WiFi of PC to Access Point Mode. So, now I am able to connect to PC using that WiFi network. But I am unable to access internet. Can anyone suggest me the way to share my PC internet to my HTC Tattoo to save money when we are at home.

View 3 Replies View Related

Android :: Internet Connection Sharing Via WiFi

Jun 6, 2010

Is it possible for Android to connect to Windows ICS (Internet Connection Sharing) via WiFi?I have set up Windows ICS (Internet Connection Sharing) on my Windows XP laptop WiFi adapter. The connection is open with WEP disabled.From a Windows Mobile 6 PDA I am able to see various WiFi routers, my laptop ICS and connect to the laptop ICS.From Android I am only able to see the various WiFi routers, but not the laptop ICS connection.Does the Windows ICS use some special Microsoft protocol that the Android WiFi adapter can not detect?Is there some other Android software or app that can connect the Windows WiFi ICS?

View 4 Replies View Related

Samsung : Need Galaxy S - Mac Wifi Internet Sharing

Oct 7, 2010

I have a Macbook Pro, its connected to Ethernet & I want to share the internet connection with my Samsung Galaxy S. I enabled Internet Sharing on my Mac, selected Airport under ports & provided a WEP password. On my Galaxy S, I select my macbook on the list of WiFi n/w, provide the password, but it never gets connected & there is no error msg either. Has anyone else tried this? Any ideas on why this is happening? BTW, I'm able to connect my Galaxy S to my wireless router at home.

View 2 Replies View Related

General :: WiFi Hotspot - Sharing Without Being Visible?

Oct 22, 2013

it is possible to send 3g from your android phone to your PC, without others can see it? I dont want it to be broadcast in the public, and i cant do a direct connection with a datacord. So is there a way to share your 3g connection with your computer, without public broadcast and datacord/wires?

View 5 Replies View Related

Android :: Sharing Data Between Activities

Apr 7, 2010

I was playing a bit with adapters cursors and activities. Let's assume i have a cursor containing a query I've made (it doesn't matter if it's to DB or content provider). Now lets assume i bind some of the data (first two rows) to a list activity. Every click on one of those items should open a new list activity (i pass on the cursor index in the activity bundle). Now the question is, which sharing method will be most efficient and right from code point of view ?

1. I thought of trying to send the cursor object in the intent itself (hoping it implemented runnable) but I'm not so sure it's that efficient since the query may contain many rows which will need to be parceled, and i the other intents uses only a few (say 4-5 columns of each row) it's a real waste.

2. Thought of trying to create the array list for my other list screen adapter and serialize it to the intent (again use serialize and intent to pass on the data) but again i fear for efficiency penalty.

3. my last solution was to use static cursor member in my first activity, with package permission, it will work and be relatively efficient, but I'm not so sure regarding memory efficiency and code structure, i'm not fond of using static variables in any case.

Is there another sharing method that i don't know off, if two activities share the same process and application, then they also share memory space, then it should be easy to pass variables from one to another, the question is what's the easiest way without serializing ?

View 6 Replies View Related

Android :: Sharing Data Between Tab Activities

Aug 10, 2010

I did some digging, but couldn't find a clear answer. I have an application with TabActivity as the main activity. I have some computing and network communication that needs to be done when user clicks on the big red jolly "DO IT" button. One tab hosts the form with "DO IT" button, while the other tabs display the results from computing (each tab displays different part of results). The computing is done as AsyncTask as it's supposed to be (afaik).

Now the question is, what is the best way to share the results between the tabbed activities? It can be done with ContentProvider + database from what I have read, although that seems like a bit too much for my needs. I have also considered an option to save the results to some cache file activities could read in onCreate, onResume etc and display the data. Are there any other convenient ways to share the data? (To make it more clear, the data aren't simple, so doing it through preferences etc is impossible.)

View 5 Replies View Related

Android :: Sharing Data Across Activities

Mar 13, 2009

I was looking out for ways to share data between various activities that one may need to create for his applications . Using "Parcel" and Bundle one can do data exchange , but looks like this is a bit cumbersome process specifically if you have to share large array objects with too many fields.

As android.app.Application maintains global state for the application , we can use this class to store global data and access it across activities. Is this a good way ? Are there any implications on allocating large objects in the your class which extends from android.app.Application ?

View 6 Replies View Related

Android :: Sharing Data Between Users

Aug 25, 2010

I'm writing a game that includes an editor for users to create their own levels. I'd like players to be able to share the levels they've created with other players. I'm trying to figure out the best way of implementing that, and hoping for any advice on the subject.

One obvious option is to set up a server for sharing levels. The game would connect directly to the server to let players share their creations or download levels created by other players. This provides seamless integration and a good user experience, but I'd really prefer not to use this approach. For one thing, I don't want the cost and responsibility of setting up and maintaining the server. And I would be taking on a basically unlimited obligation; otherwise, if I decided to shut down the server a few years from now, the game would suddenly lose a large part of its value.

Another idea I had is to use the Android Market as the way to distribute sets of levels. That way, Google is taking care of running the server for me. Clearly there are programs that work this way, since I've seen lots of themes and expansion packs for particular applications in the Market. While this could work, I'm not very happy with it. Asking an ordinary user to sign up for a developer account on the Market and learn how to post files through it is unreasonable, not to mention they would have to pay $25.

The approach I'm currently leaning toward is allowing levels to be exported as ordinary files. People could then just email them to each other, post them on any website they wanted, etc. Ideally I would want to set up a file type association so they could simply open an email attachment or click a link in the web browser, and my game would automatically be launched to import it. I haven't yet looked into whether that's possible.

View 3 Replies View Related

Android :: Sharing Data Between Tabs

Jul 21, 2010

I am getting some glitches while making a tab enabled application.

I want to share data, between two tabs of mine application.

How can i achieve the same.

View 3 Replies View Related

Android :: Sharing Data On Two Apps

Oct 20, 2010

I am new in android development. i was wondering if i could share some data between two applications in android. One way is to place the text file on SD Card but i dont want to do this.Second way is to place in data folder, and i dont know how to.3rd way is to place the data in shared memory so both applications can see it.also i dont want the user to see or delete this file,only my two applications can change this file or data.Please help me.I've been wondering on this for 2 days.

View 5 Replies View Related

Motorola Droid :: Internet Sharing - WiFi Router

Nov 19, 2009

Im really looking at getting this phone. What I really need though is to have the ability to use my phone as a wifi router to use my laptop when needed. My current 2 year old samsung i760 is running an app called WM wifi router that is currently doing this, for free. To me this is a deal breaker if the phone cannot do this. I have looked everywhere on the interwebz and have not found no such info for this phone.

View 15 Replies View Related

General :: Sharing PC Wired Connection Using Phone WiFi - Possible?

Aug 7, 2011

I have a PC running Windows XP, which is connected to the internet using a wired cable modem. I then have a laptop, which I want to use to access the internet, but no wireless router.

Then I realized that my G1 (running Froyo) has WiFi, and I have the USB cable for it. So, is there any way of setting up my G1 to use the connection from the desktop PC via USB, and then broadcast it as a WiFi network? This is only intended to be a temporary solution (a few days) so I'm not going to go out and buy a wireless router or anything.

View 7 Replies View Related

General :: WiFi File Sharing Between Windows 7 And Android

Apr 5, 2012

I have problem about sharing files between win7 and my sensation wirelessly. I have no modem to connect my pc and and phone together, because i use phone's internet connection on my pc, so i don't need a modem. Because of this, i can't find my way to reach files on my computer using my phone. I set a wireless network on my pc, but android phones does not find the network i created ( i thing something with b/g/n ). Is there any way possible?

Actually what i want to do is playing movies on pc's harddrive, on my sensation using es file explorer or else..

View 1 Replies View Related

Android :: Sharing Data Amongst Activities And Services

Aug 23, 2010

I am working on a small android project where it is necessary to share some data amongst several activities and a service that runs in a separate process. I would just like to know what are my options in terms of sharing data? Application class? IPC? File-based? Broadcasts?

View 3 Replies View Related

Android :: Sharing Data Between An Service And An Application

Jun 28, 2009

In order to share data between one of my own Android service and an application i am looking for the best way to do this. I have seen the shared memory drivers inside the GNU Linux kernel, but no Java api. Maybe the specific Google IPC Blinder cad be used for my need ?

View 10 Replies View Related

HTC Wildfire :: Sharing Wired Internet Connection Through WiFi Dongle

Oct 15, 2010

I have a wired internet connection on my PC, how do i share that internet connection to my HTC wildfire. i read in some forum about connectivity , but it confused me. Now if i buy a usb wifi dongle and attach that to my pc , will i be able to share my wired internet connection with my cell phone.please guide me

View 8 Replies View Related

Motorola Droid X : How Do You Setup A Share Folder For Sharing Over Wifi

Jul 21, 2010

It seems possible to setup a shared folder but I can't find any directions on it and none of my current shares show on the phone. Does any know how to do this or if it's even possible. I would love to transfer stuff without plugging in the phone.

View 11 Replies View Related

Android :: Google Apps Found To Be Sharing Data

Sep 30, 2010

BBC News - Google Android apps found to be sharing data

Quote:

View 26 Replies View Related

Android :: Options For Sharing App Data On Multiple Phones

Aug 22, 2010

I'm looking for suggestions for ways to share Android app data between phones running the same app. For example, lets say I have an app that stores a database of book reviews. If person A has a book review that person B doesn't have, what are the options for getting that information from person A's phone to person B's phone?

Currently, I'm aware of the following options:

- Upload data from person A's phone to a server, then download data from server to Person B's phone.
- Write code to have the phones sync up using bluetooth
- Write code to send SMS messages


I'm wondering if there are any more options besides these, and if there's actually a best-practice for accomplishing this?

Ideally, I want the users to simply click a button in the app to make the sharing take place, so I don't want to go down the bluetooth route because that requires the user to do a bit of setup (or assumes they already have set things up in the form of bluetooth settings).

Since the data can be of variable length and potentially large, I believe that would rule out text messaging.

As far as the server route goes, from what I understand this seems to be an ok way of doing things, but my problem is that I have no experience with having users potentially sign in to a server and then uploading data. I don't know of the cost concerns (if any), or of potential security concerns (allowing just anyone to upload data, I'm not sure if I would have to take steps to ensure someone couldn't bypass the app and upload malicious data).

View 3 Replies View Related

Android :: Sharing Data Between Activities / Activity2 A Pointer To Object1

Jul 22, 2009

I have been using SharedPreferences to share data between activities. But I would very much like to find a better way. I would simply like both Activity1 and Activity2 to share Object1. Activity1 will create Object1 and then start Activity2. What is the smartest way to give Activity2 a pointer to Object1?

To summarize: Activities don't have constructors! How do I send data to them from their parent activity?

View 17 Replies View Related

General :: Sharing Google Play Account Without Sharing Everything Else?

Sep 19, 2012

I have my Google account also setup on my wife's phone so we can share purchased apps. However, everything else is shared too. For example, even though I have sync for everything on my account turned off, my calendar still showed up on my wife's phone until I disabled it in the calendar app. Also, I can't remove my Google Talk account from her phone so my messages show up on her phone.

This is on a pair of stock Samsung Galaxy S3 phones.

View 2 Replies View Related

General :: Sharing Laptop Internet On Android Phone While Using Phone WiFi Hotspot Enable?

Apr 4, 2013

I have samsung android phone which can be used as wifi hotspot. My question is can I use my laptop internet on android phone by connection laptop to android phone hotspot as phone is unable to connect adhoc network.

View 1 Replies View Related

General :: App That Shows Data Transfer Rate (WiFi / Mobile Data) On Notification Bar

Jul 9, 2012

I use DU meter but its in the notification panel...i need one in the notification bar

and there was another app called network meter and lots of other... [URL] .....

but none of them have it on the notification bar....

this one fits my need... [URL] ....

but isnt refreshed in real time and slows the phone and battery life.

View 4 Replies View Related

Android :: Select Android Applications Sharing Data Without User Notification

Sep 30, 2010

Come one, come all -- let's gather and act shocked, shall we? It's no secret that Google's Android Market is far easier to penetrate than Apple's App Store, which is most definitely a double-edged sword. On one hand, you aren't stuck waiting a lifetime for Apple to approve a perfectly sound app; on the other, you may end up accidentally downloading some Nazi themes that scar you for life. A curious team of scientists from Intel Labs, Penn State and Duke University recently utilized a so-called TaintDroid extension in order to log and monitor the actions of 30 Android apps -- 30 that were picked from the 358 most popular. Their findings? That half of their sample (15, if you're rusty in the math department) shared location information and / or other unique identifiers (IMEI numbers, phone numbers, SIM numbers, etc.) with advertisers. Making matters worse, those 15 didn't actually inform end-users that data was being shared, and some of 'em beamed out information while applications were dormant. Unfortunately for us all, the researchers didn't bother to rat out the 15 evil apps mentioned here, so good luck resting easy knowing that your library of popular apps could be spying on you right now.

Update: A Google spokesperson pinged up with an official response to the study, and you can peek it after the break.Update 2: Looks as if the full study (PDF) has been outed, with the 30 total apps named. Here they are: The Weather Channel, Cestos, Solitaire, Movies, Babble, Manga Browser, Bump, Wertago, Antivirus, ABC - Animals, Traffic Jam, Hearts, Blackjack, Horoscope, 3001 Wisdom Quotes Lite, Yellow Pages, Dastelefonbuch, Astrid, BBC News Live Stream, Ringtones, Layer, Knocking, Barcode Scanner, Coupons, Trapster, Spongebob Slide, ProBasketBall, MySpace, ixMAT, and Evernote.

View 6 Replies View Related

General :: Simultaneous WiFi (no-data) And 3G (data)

May 25, 2012

I'm wondering if on an android device there's a way to force it to keep open a wifi connection that is not used for data, for example to a Seagate Goflex Satellite (WiFi HDD) or eye-fi (WiFi SDHC) while also being simultaneously connected to 3G for data. Obviously connecting to 2 wifi connections is out of the question.

View 5 Replies View Related

HTC Desire :: Data Cap On Wifi

Jul 20, 2010

i'v heard phone companys are putting a data cap on even wifi now. Can anyone explain this to me please?Also does this effect home wifi? I mean fair enough capping public wifi spots but sureley they cant limit your home wifi use?

View 7 Replies View Related

General :: WiFi Uses Data?

May 27, 2012

When I use WiFi, does that count as far as data usage on my cell phone plan? The plan Im on advertises unlimited everything but the data as conditions and I've gotten two notices from the company saying I'm excessively using data so now I turn on WiFi at work and home. Does the Wifi usage count as far as data usage goes?

View 5 Replies View Related

General :: Using Data While On WiFi?

Apr 1, 2013

I know, mobile data is automatically turned off by Android when connected to a wi-fi. Now, my phone is a nexus 4, and since I have limited storage, I use a wi-fi external hard drive, which means I am always connected to wi-fi on the road. Now, if I want to use mobile data while I'm connected to a wi-fi network, is there a way to make it work?

View 3 Replies View Related







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