[android-developers] SOAP Implementation

2011-09-28 Thread Sivaprakash
Hi Can some one give me a sample for SOAP implementation in Android? Im struggling to get it done. -- - Prakash. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To

[android-developers] Break the execution

2011-09-23 Thread Sivaprakash
Hi How can I stop the execution at one point? For Example if (strUserName.equals("")) { Toast.makeText(getBaseContext(), "Enter User Name.", 10).show(); } Inside this If condition I want to stop the execution and dont let the system to execute rest of the code which I have in bottom

[android-developers] Loading multiple pages

2011-09-22 Thread Sivaprakash
Hi How can I show my data in multiple screens? For example if I have 30 items need to be shown 5 items per page. When I scroll then the next page (with another 5 items) have to be loaded? -- - Prakash. -- You received this message because you are subscribed to the Google Groups "Android Develo

[android-developers] SSL Android

2011-09-22 Thread Sivaprakash
Hi I want to do a webservice call from my client app (HTTPs), With this following code I am able to connect and get the response successfully but want to know what I am doing is the correct one or not? Could some one review and tell me is this secured way of connecting ? I have followed steps whic

[android-developers] List Update

2011-08-26 Thread Sivaprakash
Hi I have a list and when I click any item there will be a pop-up dialog which will have list of options. If user selects any option I want to change a status in the list. How to do this with out refreshing the list? Thanks Siva -- You received this message because you are subscribed to the Goo

[android-developers] List Data

2011-08-25 Thread Sivaprakash
Hi I have a 200 different list (each list might have 200 items) size of the each list will be 100 KB that need to be loaded into ListView. But I'll use only one list at a time. I would like to know which is the best mechanism to deal with the data 1. Download the list data every time from serv

[android-developers] Menu

2011-08-19 Thread Sivaprakash
Hi I want to create a menu as if shown in the below image. Is it a context menu or something special to attach along with the button which is clicked. -- - Prakash. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group

Re: [android-developers] Re: Service Implemenration

2011-08-02 Thread Sivaprakash
Great !! So the document says IntentService works as if like "work queue processor" which means queue mechanism is implemented internally and developer need not worry about to control the requests for example if 1000's of intents tries to access it can queue the requests and process them latter? is

[android-developers] Service Implemenration

2011-08-02 Thread Sivaprakash
Hi I have a back ground service which is responsible for reading content from the mobile (on-demand) and send to Server through web service. When ever I call the service by default it is hitting onStart and from there I am creating separate thread to handle each request because the service might g

[android-developers] Intent filter to know for new photo

2011-07-28 Thread Sivaprakash
Hi I want to receive a notification when any photo is taken in the mobile phone. Which intent filter should I use? -- - Prakash. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@goog

[android-developers] Call Background Service from Intent

2011-07-28 Thread Sivaprakash
Hi I have written an intent for Camera device, which will basically listen for snaps. If any new photo taken it will trigger my intent. I want to call a background service (which I have implemented already) from the intent to upload the file. How can bridge these two? Any samples or explanations w

[android-developers] Data Transmission

2011-07-21 Thread Sivaprakash
Hi What is the best way to transfer the data between client (mobile) and the server ? XML or Json ? Can I do any data structuring in client end ? -- - Prakash. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send

Re: [android-developers] Re: Alarm Service

2011-06-23 Thread Sivaprakash
tells > > me...Oh WTF...Oh yeah Android...Alarm service...Need to pee" > > > > and falls asleep :D > > > > Yahel > > > > On 23 juin, 16:03, Sivaprakash wrote: > > > > > > > > > > > > > > > > > > > &g

[android-developers] Alarm Service

2011-06-23 Thread Sivaprakash
Where I can use Alarm Service, looks like the schedule information will be persisted only till the device gets boot up. -- - Prakash. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@

Re: [android-developers] Re: Accessing Assets

2011-06-22 Thread Sivaprakash
of putting them in the APK > file. > > On Wed, Jun 22, 2011 at 8:23 AM, Sivaprakash > wrote: > > Some more input to help me better when I tried > > > > getAssets().open("demo.xml"); > > > > I am getting response. But when I say this > > > >

[android-developers] Re: Accessing Assets

2011-06-22 Thread Sivaprakash
a file descriptor; it is probably compressed" But I haven't compress anything. Thanks Siva On Wed, Jun 22, 2011 at 4:43 PM, Sivaprakash wrote: > Hi > > I am writing custom content provider for my application. When I try to > access a file which is present under "

[android-developers] Accessing Assets

2011-06-22 Thread Sivaprakash
Hi I am writing custom content provider for my application. When I try to access a file which is present under "assets" using the following statement getContext().getAssets().openFd("demo.xml") It always throws file not found, I really dont understand what I am doing wrong. Any advice? - Do I ne

[android-developers] Persistent

2011-06-22 Thread Sivaprakash
Hi I have a requirement where I've to take list of inputs from user and in next screen summary should be shown. And also user will be provided and option to go back and edit the data. During this transition where the data should be kept ? In-Memory or need to persist in SQLite (since I am already

Re: [android-developers] Aw: WebSerivce Integration

2011-06-21 Thread Sivaprakash
Any sample ? Even if you respond back with stream how does my front end under stand the structure and behave? On Tue, Jun 21, 2011 at 7:11 PM, jjoe64 wrote: > parse it in background and as a stream. never read it with a buffer, don't > create objects for every node/attribute ... > > -- > You rec

[android-developers] WebSerivce Integration

2011-06-21 Thread Sivaprakash
Hi What is the best mechanism to use WebService (REST) in Android application. Because some time Service respond with hefty amount of data (XML Format). Processing the data @ device end wont be a correct approach as that might kill the resources. Can some one tell me how to handle this? -- - Pra

Re: Re: [android-developers] Aw: Object Structure

2011-06-21 Thread Sivaprakash
Thanks !! So, when ever I get data back from back end server it has to be persisted in local storage (SQLite) and through content provider only I should access is that correct approach ? - Siva On Sat, Jun 18, 2011 at 6:41 PM, jjoe64 wrote: > yes. > if you do a query on your content provider (

Re: [android-developers] Aw: Object Structure

2011-06-17 Thread Sivaprakash
4:57 PM, Sivaprakash wrote: > Hi > > I am using > > ArrayList> mylist = new ArrayList String>>(); > > to assign data into ListView So rather than doing this are you advising > that we can directly talk to GUI components and display the content? > > Thank

Re: [android-developers] Aw: Object Structure

2011-06-17 Thread Sivaprakash
Hi I am using ArrayList> mylist = new ArrayList>(); to assign data into ListView So rather than doing this are you advising that we can directly talk to GUI components and display the content? Thanks Siva On Fri, Jun 17, 2011 at 4:46 PM, jjoe64 wrote: > hi > you shouldn't hold munch da

[android-developers] Object Structure

2011-06-17 Thread Sivaprakash
Hi I have few data in object structure and the same is being used to display the data on GUI. Is it a good idea to maintain my data and make all updates on the data object itself? - In other words MVC pattern. Or I should not keep any values in object (in-memory) since it might hold some of the s

[android-developers] Terminal Emulator

2011-06-14 Thread Sivaprakash
Hi I have installed Terminal Emulator in my mobile but it doesnt seems to work. It returns "Not Found" for the command "Whoami" ? Any configuration required to access my data. I would like to login as a root and see complete data. -- - Prakash. -- You received this message because you are subs

[android-developers] Data Access

2011-06-13 Thread Sivaprakash
Hi I want to transfer data between Mobile client and Server application through web service. Can I use normal object serialization? Any specific recommendation given to use processor effectively? -- - Prakash. -- You received this message because you are subscribed to the Google Groups "Androi

Re: [android-developers] Android - SQLLite

2011-06-12 Thread Sivaprakash
com* > > > > On Sun, Jun 12, 2011 at 9:42 PM, Sivaprakash < > sivaprakashshanmu...@gmail.com> wrote: > >> Alright, but any way what is the best mechanism to protect my data? Even >> if I loose my mobile someone should not gain access to my data. >> >> On S

Re: [android-developers] Android - SQLLite

2011-06-12 Thread Sivaprakash
Alright, but any way what is the best mechanism to protect my data? Even if I loose my mobile someone should not gain access to my data. On Sun, Jun 12, 2011 at 5:52 PM, Mark Murphy wrote: > On Sun, Jun 12, 2011 at 1:37 AM, Sivaprakash > wrote: > > Thanks !! What should I do

Re: [android-developers] Android - SQLLite

2011-06-11 Thread Sivaprakash
Thanks !! What should I do if I want to protect my data in more secure way meaning even if someone steels my memory card they should not gain access to my data or immediately it should be erased ? On Sat, Jun 11, 2011 at 7:08 PM, Mark Murphy wrote: > On Sat, Jun 11, 2011 at 9:31 AM, Sivaprak

[android-developers] Android - SQLLite

2011-06-11 Thread Sivaprakash
Hi I want to persist few data into SQL Lite storage which comes with Android. How the internal storage works because there is a possibility that other applications can access my data? Is there any way for me to set password for my database to prevent other apps to access my data? -- - Prakash.

[android-developers] Warning Message - Debugging

2011-05-31 Thread Sivaprakash
Hi I have written a simple application and tried to debug it with the device. I am getting following warning message when I enable "android:debuggable="true" in my manifest file if I remove everything goes well and still it gets deployed into the device? Any clues to avoid this warning. [2011-

[android-developers] Mobile Payment API

2011-05-24 Thread Sivaprakash
Hi Is there any good Mobile Payment Gateway API available? Thanks Siva -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] Open Source Chart

2011-05-02 Thread Sivaprakash
Hi Please let me know if there is any good Open Source Chart Library for Android ? -- Siva -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this

Re: [android-developers] How to change the Width and Height of the AVD

2011-02-22 Thread Sivaprakash
But every time the emulator is taking more time to launch the application (at least 2 - 3 mns) any quick way? 2011/2/22 Sivaprakash > Yes, Logcat showed that some of the resource files were missing then I > realized some of my commands might went wrong against the emulator. Like I >

Re: [android-developers] How to change the Width and Height of the AVD

2011-02-22 Thread Sivaprakash
instability for you. > > -- Kostya > > 22.02.2011 14:16, Sivaprakash пишет: > > But after updating my AVD there is a pop-up coming > > "The application Launcher (Process com.android.launcher) has stopped > unexpectedly, Please try again." but after couple

Re: [android-developers] How to change the Width and Height of the AVD

2011-02-22 Thread Sivaprakash
/22 Kostya Vasilyev > Use "scale to real size" in the launch dialog, play with the scaling factor > (0.5 is a good start for an emulated tablet). > 22.02.2011 10:30 пользователь "Sivaprakash" < > sivaprakashshanmu...@gmail.com> написал: > > > Hi > > &g

Re: [android-developers] How to change the Width and Height of the AVD

2011-02-22 Thread Sivaprakash
an emulated tablet). > 22.02.2011 10:30 пользователь "Sivaprakash" < > sivaprakashshanmu...@gmail.com> написал: > > > Hi > > > > I have created an AVD emulator but I want to change the Width and Height > > because it is going to out my Laptop scr

[android-developers] How to change the Width and Height of the AVD

2011-02-21 Thread Sivaprakash
Hi I have created an AVD emulator but I want to change the Width and Height because it is going to out my Laptop screen size. Any thoughts? http://developer.android.com/guide/developing/tools/avd.html#hardwareopts Here I see there are commands -s - but I don't know how/where to find Android comm

[android-developers] Deploying Application into Device

2011-02-21 Thread Sivaprakash
Hi Could you please pass me step-by-step procedure on how to deploy application into Android Device (my Phone)? I believe multiple options should be there like from Eclipse and from Command Line (typically when we buy an app from Android store). -- - Prakash. -- You received this message beca

[android-developers] Android Life Cycle

2011-02-20 Thread Sivaprakash
Hi I am curious to know how the Java code gets convert as an Android App ? My understanding is Java -- > Byte Code -- > APK --> dex (Dalvik) That is, Java code will be converted as a Byte Code when we compile and then it will be packaged as a APK (Android Project). When we install APK into any A

Re: [android-developers] Re: Android 2.3 Vs 3.0

2011-02-19 Thread Sivaprakash
http://www.zdnet.com/blog/perlow/android-30-hell-yes-its-a-fork-but-who-cares/15703 On Sat, Feb 19, 2011 at 12:24 AM, Elvis wrote: > You can get the 2.3.3 API10 from the windows SDK and loop mount > the .img files + copy out what you need or start the SDK emulator and > use androidcommander to

Re: [android-developers] Re: Android 2.3 Vs 3.0

2011-02-18 Thread Sivaprakash
just for tablets and won't run on >> phones" they're just saying that a particular version of Android is >> just for tablets. There will be lots of versions after Honeycomb. >> Apple did something similar with iOS - they had an iPad only release >> and the

Re: [android-developers] Service Process Vs background process

2011-02-17 Thread Sivaprakash
is same as in android background processes is know as service... > may be i couldn't get ur question... > > > On Thu, Feb 17, 2011 at 4:40 PM, Marcin Orlowski > wrote: > >> On 17 February 2011 12:08, Sivaprakash >> wrote: >> > Can some one tell how

[android-developers] Service Process Vs background process

2011-02-17 Thread Sivaprakash
Can some one tell how exactly *service process* and *background process*Service differs - Process Life Cycle Stand point? Because both of them are the to serve same purpose? -- - Prakash. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. T

Re: [android-developers] Android 2.3 Vs 3.0

2011-02-15 Thread Sivaprakash
On Mon, Feb 14, 2011 at 8:55 PM, Sivaprakash < > sivaprakashshanmu...@gmail.com> wrote: > >> Hi >> >> Read from few of the articles that Google has forked Android is it so ? >> Which means I can not use 3.0 for my Phone application but only for Tablet? >> &

[android-developers] Android 2.3 Vs 3.0

2011-02-15 Thread Sivaprakash
Hi Read from few of the articles that Google has forked Android is it so ? Which means I can not use 3.0 for my Phone application but only for Tablet? Thanks Siva -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send