[android-beginners] Re: Display System Settings

2008-11-05 Thread Sunit Katkar
I have only played with BUILD and BatteryManager. On Tue, Nov 4, 2008 at 11:02 PM, parani kumar <[EMAIL PROTECTED]> wrote: > Dear Sunit, > > Thanks for the information. Can you also guide me how to list the folders > and files inside the Mobile/Emulator? > > -- > Thanks, > parani > > On Wed, Nov

[android-beginners] Re: Display System Settings

2008-11-05 Thread parani kumar
Hi, This is i used to get the memory status. Kindly check it. android.os.StatFs stats = new android.os.StatFs("/sdcard"); int space = stats.getAvailableBlocks() * stats.getBlockSize(); Also, this is one which used to show the build information, StringBuilder builder = new StringBuilder(); bu

[android-beginners] Re: Display System Settings

2008-11-04 Thread Thaw
Hi, If u have some coding file to display system information in emulator that u discussed, please show me that coding package such as laytout.xml and .java and manifest.xml,etc., Thanks a lot... your regards, Thaw. --~--~-~--~~~---~--~~ You received this message bec

[android-beginners] Re: Display System Settings

2008-11-04 Thread parani kumar
Dear Sunit, Thanks for the information. Can you also guide me how to list the folders and files inside the Mobile/Emulator? -- Thanks, parani On Wed, Nov 5, 2008 at 12:45 AM, Sunit Katkar <[EMAIL PROTECTED]> wrote: > Explore the android.os package... You will get a lot of useful information >

[android-beginners] Re: Display System Settings

2008-11-04 Thread Sunit Katkar
Explore the android.os package... You will get a lot of useful information there. On Sun, Nov 2, 2008 at 9:28 PM, parani kumar <[EMAIL PROTECTED]> wrote: > Hi, > > Thanks for the response, I wish to display the mobile details like, the > memory size, hardware details and OS. Kindly assist me on

[android-beginners] Re: Display System Settings

2008-11-02 Thread parani kumar
Hi, Thanks for the response, I wish to display the mobile details like, the memory size, hardware details and OS. Kindly assist me on this. On Sat, Nov 1, 2008 at 1:34 AM, Android dev <[EMAIL PROTECTED]> wrote: > What system details do you want to display ? > > > On Wed, Oct 29, 2008 at 5:21 AM

[android-beginners] Re: Display System Settings

2008-10-31 Thread Android dev
What system details do you want to display ? On Wed, Oct 29, 2008 at 5:21 AM, parani kumar <[EMAIL PROTECTED]> wrote: > Hi Everyone, > > I am new to android development, Can anyone suggest me, how to display the > System details in Emulator? > > This would help me to get a great step in android d