Android :: Which Application Using How Much Internet Data?

Jul 18, 2010

I am using a lot of Internet Possibly 15mb a day, is there an application to tell me what app is using up what usage?

Android :: Which Application using how much Internet Data?


Android :: Application Goes To Background Still Continue Working (sending / Getting Data From Internet)?

Oct 19, 2010

my application is not a service, it's a normal application, with some windows and some stuff. i dont wanna make it a service cos is too munch complicated and i prefeer to avoid it then, if my application is not a service, when it goes to background (home key pressed for example), it continues working (sending/getting data from internet)? i ask this because i read this on a developer guide tutorial: "Because an Activity can perform actions only while it is active and in focus, you should create your status bar notifications from a Service"

View 2 Replies View Related

HTC Desire HD :: What Application Using Huge Amount Of Data? (Internet Usage)

Nov 25, 2010

So I've had my DHD for 3 days, done a little 3G browsing the usual stuff Facebook, emails etc., but nothing more as I used my home WiFi for the widget and app downloads. But today I got a text from Vodafone saying I was near my internet usage limit for the Month! Within 3 days!? I have a 750MB limit, which the chap in the shop assured me was enough to keep me happy as 'no one ever goes over that.'

I was happy with that even though my previous contract was unlimited internet as he said it would be ok. All I can think of is the email syncing, so turned that off. But what else could be causing me to go over the 750MB limit within 3 days? Surely thats a huge amount to be used?

View 12 Replies View Related

Sony Ericsson Xperia X10 :: Unlimited Internet Usage / Which Application Using Data Most?

Oct 26, 2010

O2 have changed the bolt on I had from unlimited usage of internet to 500mb per month. The row I had with them was of no benefit. Anyway, in the space of 3 days I have used 100mb already & haven't really been using browser or downloading (I did obtain album artwork for transferred music files on Mediascape though). Is it possible that Timescape updates of Twitter & Facebook are draining my monthly allowance? I would check emails on the phone too. Haven't been watching YouTube or anything like that.

View 7 Replies View Related

Android :: Best Way To Store Application Data / When Data Stored / Data Format Could Change In Future Versions?

Mar 4, 2010

I'm making an Android Java app game (although this question applies to all languages really) and hope to release the first version soon. I'm nervous about how I save data in my game. My problem is that, if in a later update, I decide to store more data or store the same data in a different way, I need to be careful I don't lose or corrupt data for users that upgrade (i.e. I want users to be able to use data created by an old version in the new version, like their high scores from before).For example, say I want to save high scores in version 1.

View 3 Replies View Related

Android :: How To Know Internet Data Usage?

Jan 4, 2010

Are there any inbuilt classes ya methods that help to count the number of bytes sent/received. I'm trying to develop a light weight browser and am doing this as an option. As mobile users are charged based on the bytes they browse. I think this is a mandatory requirement but the more I google it The less I find?

View 2 Replies View Related

Android :: Advice On First Application (loading Data / Populating Data)

Jun 23, 2010

to start with I've gone through the entire notepad tutorial, I'm a professional game programmer who has some extra time. (though most of my time has been in C++, I did take a year or two of Java classes in college, and remember some of it). I'm not sure the site is a good site to ask questions like this.. If someone has a Forum that might be a good place to ask these newbie questions, please feel free to point me in the direction. I've examined a few of the samples, and think I've a grasp of what I want to do. I've a three to four project plan for some Android releases to sharpen my skills, but since this is my first project and I have never really developed for a mobile phone or the android before, I'd like to make sure I have a solid plan.The first project is an example of the license plate game, however I want to do a few things to change it. Heck maybe when I'm done it'll become a bingo style game, with bluetooth connectivity, you never know. The base idea is I want to offer a list of states, with checkboxes next to them. so to do this, I'll be starting with a Linear List layout similar to the note pad example, and then have a row that is only a Checkbox. I can use text and call strike through if it's been checked off. Perhaps offer an option to not show them if they are checked.

But I want the list to be generated from a set of lists. Maybe all of America's states, maybe reasonable American states (no Hawaii, no Alaska) maybe a North American list, (add in Mexico and some Canadian provinces), a European list, who knows. I'd probably have to have a pop up window that lists all of the lists I suppose using a radiogroup of some sort. So then as far as the data, after weighing options I think best solution is to make a database with two fields, "checked" and "name".I figure I can use the menu for most of the user interaction (aside from clicking on stuff we want to check off) with maybe a few context menu items, I understand how to make all of those already so I should be good. The question I have is what is the best way to populate the lists? Should I create raw data, and have different files for all the lists? Or is there some other way to do this? I've seen this done on the searchable dictionary, but I'd like to hear what people who have actually generated the data like this before. In addition is there an easy way to look at the sql database these applications create, or do you have to run searches on them and output the data? Finally any other suggestion or advice? I definitely want to try to get something like this on the market so I can see the full life cycle and see if anyone actually likes it. (luckily there's not a plethora of them already) but I also want a few people to look over my code if they're willing when I'm done to make sure I've done this right or at least not missing any basic mistakes.

View 2 Replies View Related

Android :: Phone Won't Log Into The Internet And Use Data Accidentally

Jun 30, 2009

Is there a way or an application that I can use to make it so that the phone won't log into the internet and use data accidentally. Essentially I just want to use Wifi and maybe mobile browser, but no 3g or whatever uses data.

View 4 Replies View Related

Android :: Retreivng Data From Internet Source

Mar 21, 2009

I am having difficulty retrieving data from the internet to be displayed in a TextView. When I run the application it says the application has stopped unexpectedly.

I am using the code:

CODE:.................

View 21 Replies View Related

Android :: Get A Java To Call Data From The Internet?

Apr 4, 2010

I am trying to pull data from the internet to make a widget for the home screen.

I have the layout built:

CODE:............

Image downloaded from the internet goes here. Needs to be updated every evening at midnight or unless the button below is pressed. Now if I could only figure out exactly how to do this, life would be good."

CODE:................

Got the provider xml bulit:

CODE:.................

But here is were I am stuck. I just don't know where to start at all. The java is so far beyond my little head that I don't know what to do.

CODE:............

The wiki example just confused me more. I just don't know where to begin.

View 2 Replies View Related

Android :: Best Approach For Requesting Data (internet Connection)

Sep 28, 2010

I have an app in which there are several requests to a server in internet (http), for example to retrieve images in threads outside the main UI process. The thing is that I have a Thread that manage the request with a while(!end) loop and in the end a Thread.sleep(500) that checks if there are new unhandled requests. As I read here [1] I know that this is not a good practice. And users have complain about ANR (app not responding) in several cases.

Knowing that obviously I want to refactor all the way my app manage the requests and I want to do that the best way. So, the question is; what is the best approach for doing this? A service? a broadcast receiver and send intents when I need a request to be handled?

View 6 Replies View Related

Android :: Internet Data Request Done Via Content Provider?

May 13, 2010

How could I create a ContentProvider where the data is fetch from the internet. As the data is parsed maybe allow the requesting client know the download progress and results so that they are displayed as it's downloaded. My idea is to share this data across other apps. I'm not sure if a ContentProvider would be the solution?

View 4 Replies View Related

Android :: Sending Data To Server When Device Connected To Internet

Feb 18, 2010

My app needs to send some data to a server when the device is connected. I have been reading about native Android Broadcast actions. I was willing to find a way to use one as gmail does when the device connects to the Internet. (The "loading" icon on the top while it syncs mails) Is it ACTION_SYNC what I am looking for? If not, how does gmail knows when the device connects to internet?

View 1 Replies View Related

Android :: Starting An Activity By Sending An Internet With Extra Data

Feb 19, 2009

I have a newbie question which is puzzling me regarding using Intents to start a new Activity but passing some data with the Intent for the new Activity to use. My app has (say) MainActivity from which I want to launch a second activity, SecondActivity, within the same app, whilst I pass an integer parameter to SecondActivity. Now my problem is : how do I receive the Intent when SecondActivity gets started and recover the value of the integer parameter ? Which member function of.

View 3 Replies View Related

Android :: Opening Browser Through An Internet And Posting Data For PayPal

Jan 28, 2010

I want to press an Android button and automatically direct the user to the PayPal site with all the relevant data POSTED along also.Is this possible?

View 1 Replies View Related

Android :: Turn Off Data / Internet Access All Together When Not On Wifi Connection?

May 29, 2010

i just picked up a unlocked a moto cliq.. my concern is that i have never had a data plan on my account (at&t). this phone seems to have alot of different apps and widgets updating themselfs continuosly.. i have no problem with while im at home beacuse of my wifi that i can connect to.. but when im not on a wifi connection it seems to still be updating.. which i dont want until i upgrade my plan to unlimited data.. How do i turn off these features or turn off data/ internet acess all together when im not on a wifi connection?

View 4 Replies View Related

Android :: Handle Unexpected Internet Disconnect While Downloading Data

Mar 31, 2010

I have here a function that downloads data from a remote server to file. I am still not confident with my code. My question is, what if while reading the stream and saving the data to a file and suddenly I was disconnected in the internet, will these catch exceptions below can really catch that kind of incident? If not, can you suggest how to handle this kind of incident?

I call this function in a thread so that the UI won't be blocked.

CODE:...................

View 1 Replies View Related

Android :: Application Data Remain After Application Removal

Feb 6, 2010

I want to add a flag that will tell how much time my application is running. This flag will have to stay even after the application is removed. And, if its installed back, i must have a way to recover this flag. What's a way to implement this?

View 8 Replies View Related

Android :: Fetching Data From Internet In Background And Showing ProgressDialog Or ProgressBar

Jan 21, 2010

I am developing an application which require accessing a website for data, and will show that data on device. I wants to fetch data from Internet in background and show ProgressDialog or ProgressBar on
device and when application receive response from server app will dismiss the dialog or bar and will show data .

For this i am using AsyncTask -

code for AsyncTask is as follows--

CODE:..........

And calling this code as follows--

CODE:...........

But ProgressDialog is not shown.(I guess the reason for it is the thread is not complete and android invalidate only when thread has completed).

My Questions-
1- If my guess is right ? If yes then how I should implement it?

2- If there is any other better way to do this?

View 1 Replies View Related

HTC Desire :: What Is Internet Data

Nov 8, 2010

What is "Internet Data"? Is it ok to delete it via the applications menu? If so, what "data" will I lose?

View 6 Replies View Related

How To Filter Internet Data

Apr 8, 2012

I am developing an application which uses Internet.....say a facebook application.....but i want to filter the Internet data...i.e i want to show only sum part of the information i receive but not the rest....say i dont want to show the friendlist but i only want to show the wall of the facebook. i dont want to create a new website i directly want to filter it through the android application.

View 9 Replies View Related

HTC Desire HD :: DHD Internet/data Settings?

Oct 29, 2010

I got an unlocked one from HTC, and when i was using my (now expired) orange sim card the data connectivity worked fine (HSDPA).

Now that i'm with T-mobile, can someone confirm that when they turn mobile browsing on, the 'Access point name is only "MOBILE WORLD_WAP"?

Then there's another option below that reads : "Mobile World" ..

The settings i have for that don't seem to be working, and it's messing everything up (market place won't update, internet doesn't work, and maps can't syncronise - EVEN THOUGH the "H" sign on working on the top left with both up and down arrows flashing/holding)..

The settings I have under "Mobile World" are:

Name
Mobile World

APN
data.uk

Proxy
not set

Port
not set

Username
not set

Password
not set

Server
not set

MMSC
http://mmsc.t-mobile.co.uk:8002

MMS Proxy
149.254.211.010

MMS Port
8080

MCC
234

MNC
30

Authentication Type
PAP

APN type
mms

View 1 Replies View Related

Android :: Any Application To Track 3G Internet Usage?

Oct 5, 2010

On my contract I think I've got 500mb Internet. Is there a app that will tell me how much mb I have left? I don't mind paying but free will be even better.

View 2 Replies View Related

Android :: Internet Permission In Application (Manifest XML)

Mar 5, 2010

One of my users is experiencing an odd problem on network access via my application. Checking his logs shows up the following exception. The odd thing is that I have "android.permission.INTERNET" in application AndroidManifest.xml and many users have already used my app with no problem (I've launched it 4 months ago).

java.net.SocketException: Permission denied (maybe missing INTERNET permission) at org.apache.harmony.luni.platform.OSNetworkSystem.createStreamSocketImpl(Native Method) at org.apache.harmony.luni.platform.OSNetworkSystem.createStreamSocket(OSNetworkSystem.java:187) at org.apache.harmony.luni.net.PlainSocketImpl.create(PlainSocketImpl.java:266­) at java.net.Socket.checkClosedAndCreate(Socket.java:872) at java.net.Socket.connect(Socket.java:1019) at org.apache.harmony.luni.internal.net.www.protocol.http.HttpConnection.<init> (HttpConnection.java:62) at org.apache.harmony.luni.internal.net.www.protocol.http.HttpConnectionManager $ConnectionPool.getHttpConnection(HttpConnectionManager.java:145) at org.apache.harmony.luni.internal.net.www.protocol.http.HttpConnectionManager .getConnection(HttpConnectionManager.java:67) at org.apache.harmony.luni.internal.net.www.protocol.http.HttpURLConnection.get HTTPConnection(HttpURLConnection.java:821) at org.apache.harmony.luni.internal.net.www.protocol.http.HttpURLConnection.con nect(HttpURLConnection.java:807) at org.apache.harmony.luni.internal.net.www.protocol.http.HttpURLConnection.get OutputStream(HttpURLConnection.java:1150) ......

View 2 Replies View Related

Android :: Application Internet Access Behind Proxy

Sep 28, 2010

I have an android application(Android 2.2) accessing internet behind proxy. I have tried setting an APN with proxy host & port and it works fine in emulator browser. But the application fails to connect to internet. I have also tried command line option of -http-proxy, it doesn't work.

View 3 Replies View Related

Android :: Access Internet In Application Being Behind Proxy

May 17, 2010

I am trying to connect to internet through android emulator being behind proxy. I am using Android 1.6 SDK. I set my proxy details going to Home Screen->Menu Key->Settings-

>Wireless controls->Mobile networks->Access Point Names

View 3 Replies View Related

Android :: Application Requires Permissions To Set Internet

Oct 15, 2010

I have a question about a simple application, the only permission that i have set is Internet, because it's a simple application that reads something on the net. Anyway, the app requires to me (when i install it) three permissions, Internet, SD Storage and Phone usage.

Anyone knows why happens this?

View 2 Replies View Related

HTC Hero :: Internet / Data Connection Bit Iffy?

Nov 24, 2009

I've had a Hero for a few weeks now, and while most things are great, I'm finding the internet connection very unreliable. For example, if I try to use the browser to view a website, often it says it can't find the page, even for www.google.com, and this is using a bookmark so I know it's a valid address. Often in the Market, it says it doesn't have a connection and to retry or cancel.

I am usually connected via wi-fi, either at home or at the office, so I know the wi-fi connection is good, and both have been tested thoroughly with my iPhone 3G. It's almost as if I have to wait for something to happen before I can use the net, but I make sure the wifi signal symbol appears before I try anything. Why could my data connection be so unstable?

View 11 Replies View Related

HTC Desire :: Lost Data And Internet Connection

Sep 26, 2010

Took my HTC Desire to Italy and since then have lost all mobile data connections - though works fine on WiFi. Switched on airplane mode for flights, and switched off data roaming to reduce overseas costs. But when switched back on to use internet couldn't get any network connection. Now back in the UK still same issue - no internet, and cannot send MMS picture messages - even when in strong 3G signal Tried all the options I can find but no joy at all.

View 4 Replies View Related

HTC Desire :: Losing Data / Internet Connection

Jul 1, 2010

Unbranded, fully updated (2.1-update1), Desire. Three months old. No task killers installed. Just this past couple of days I've noticed it has not been showing the data connection symbol in the top bar, next to the signal strength bars. Try and connect to the internet or the market and get a 'failed' pop up window asking to either retry of cancel. Retry never works.

I go into settings > Wireless & Networks and disable Mobile Network, then enable it again and it flickers on then goes off again. Repeat this and it stays on for a while but always goes off again after about 20 minutes even though the Mobile Network is ticked green. Why is this happening? I'm missing emails because of this and it's a bit of a pain.

View 11 Replies View Related







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