hi All..

I Know how to check network status,connectivity and that type of
things,Is there any option available to get Providers network status
(means in terms of percentage or in terms of numbers???)because i need
to show the network on my application,because I removed the Status bar
from my application!!!How can i archive that?? Any solution?please
Help

thanks in advance
Binil..


On Nov 9, 2:13 am, alexdonnini <[EMAIL PROTECTED]> wrote:
> Hello,
>
> I am trying to find the exact location of networking event related
> information on an Android based device.
>
> I accessed the emulator (./adb shell), and changed to the dev
> directory (cd /dev).
>
> I thought this would be the right place to start. However, it does not
> appear to be the case, or I am using the wrong path in my application
> where I use the code listed below to access files in /dev.
>
> I would appreciate it if someone could help me identify the files
> containing networking related information, and their full path.
>
> Thanks.
>
> Alex Donnini
>
>          FileReader fstream = null;
>          try
>          {
>                  fstream = new FileReader("/dev/log/main");
>          }
>          catch (FileNotFoundException e)
>          {
>                 e.printStackTrace();
>          }
>
>          try
>          {
>                  BufferedReader in = new BufferedReader(fstream, 500);
>                  String line = null;
>                  while ((line = in.readLine()) != null)
>                  {
>                          netTrafficDev.add(line);
>                  }
>          }
>          catch (Exception e)
>          {
>                 e.printStackTrace();
>          }
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to