[android-developers] about android application development

2011-04-01 Thread kajal patil
Hi All, How to set edittext background color and edittext border line which seems an orange? Thank You. -- 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

Re: [android-developers] about android application development

2011-04-01 Thread TreKing
On Fri, Apr 1, 2011 at 11:10 AM, kajal patil patil.kaja...@gmail.comwrote: How to set edittext background color and edittext border line which seems an orange? What did you try? - TreKing

[android-developers] About Android Application Development

2011-03-16 Thread kajal patil
Hi All, I need to call a servlet from my android app and send some data.Can anyone give me some example ? Thank you -- 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

Re: [android-developers] About Android Application Development

2011-03-16 Thread Mark Murphy
This has nothing to do with Android. Use standard Java networking I/O (e.g., HttpUrlConnection) or HttpClient. On Wed, Mar 16, 2011 at 8:18 AM, kajal patil patil.kaja...@gmail.com wrote: Hi All, I need to call a servlet from my android app and send some data.Can anyone give me some

[android-developers] About Android Application Development

2011-03-15 Thread kajal patil
Hi All, I have problem in displaying message on logcat.I tried different ways but i didn't get my application as working.So i m also posting my code.I have two files send.java and receive.java.From send.java i sent information like first name,last name from my application to another

Re: [android-developers] About Android Application Development

2011-03-15 Thread cuil yahoo
System.out.println won't work here. Use Log.d(Tag, String) for printing inside the logcat. -- Cuil On Tue, Mar 15, 2011 at 1:12 PM, kajal patil patil.kaja...@gmail.comwrote: Hi All, I have problem in displaying message on logcat.I tried different ways but i didn't get my

Re: [android-developers] About Android Application Development

2011-03-15 Thread kajal patil
Hi All, I have tried it. But message is not getting displayed in logcat.Actually i am using 2 emulator at a time. so is this a reason for not working? Thank you. On Tue, Mar 15, 2011 at 1:43 PM, cuil yahoo cuilya...@gmail.com wrote: System.out.println won't work here. Use Log.d(Tag,

[android-developers] About Android Application Development

2011-03-15 Thread kajal patil
Hi All, I developed an android application but i want it more user friendly means in my application one field is skill.And when i focus on edittext field of skill then it will show pictures along with its name below of picture,like for all skills carpenter,cook,driver etc.How to do that in my

[android-developers] About Android Application Development

2011-03-15 Thread kajal patil
Hi All, I developed an android application.But I want my application more user friendly means skill is one field in my application but i want it like when i focus on its edittext box then it will show picture along with its name below for all skills like chef,carpenter,driver etc.But i didn't

[android-developers] About Android Application Development

2011-03-14 Thread kajal patil
Hi all,. I am developing an android application.I used system.out.println(message) to display message in logcat.But i did not get in logcat.I don't knw that whether system.out.println(message) is correct way.I need it for my project.Please kindly suggest solution. Thank you. -- You

Re: [android-developers] About Android Application Development

2011-03-14 Thread Damien Cooke
Hi Kajal, Best place to start, I have found, is the beginning hence take a read through this: http://developer.android.com/resources/tutorials/hello-world.html Regards Damien On 15/03/2011, at 2:26 PM, kajal patil wrote: Hi all,. I am developing an android application.I used

Re: [android-developers] About Android Application Development

2011-03-14 Thread Robin Talwar
or you could use logger. I used to toast in beginning to find the flow and as far as the project stuff is related; android gives many API demo :) On Tue, Mar 15, 2011 at 9:41 AM, Mahavir Jain vir.j...@gmail.com wrote: You can do this in following way: 1) Open command prompt. 2) navigate to

Re: [android-developers] About Android Application Development

2011-03-14 Thread Mahavir Jain
You can do this in following way: 1) Open command prompt. 2) navigate to the android-sdk-path/platform-tools 3) run adb logcat command 4) In eclipse, run the application in debug mode. Regards, Mahavir On Tue, Mar 15, 2011 at 9:26 AM, kajal patil patil.kaja...@gmail.comwrote: Hi all,.

Re: [android-developers] About Android Application Development

2011-03-14 Thread kajal patil
Hi All, Actually i didn't get.i developed an android application but how to display message on console of eclipse.I dn't know the exact syntax to display message on console. Thank you. On Tue, Mar 15, 2011 at 9:39 AM, Damien Cooke cooke.dam...@gmail.comwrote: Hi Kajal, Best place to start,

Re: [android-developers] About Android Application Development

2011-03-14 Thread cuil yahoo
To debug your android application, use the DDMS view in your eclipse. Use android.util.Log.d(text, text) to display tagged texts. try a few google searches. -- Cuil On Tue, Mar 15, 2011 at 9:49 AM, kajal patil patil.kaja...@gmail.comwrote: Hi All, Actually i didn't get.i developed an

[android-developers] About Android Application Development

2011-03-01 Thread kajal patil
Hi All, I am developing an Android application which contains fields like first name,last name,skill and address.But problem is that i want to extract the values of all edittext on button aclicknd append all values and sent it as a message to another mobile device which is connected to sms

Re: [android-developers] About Android Application Development

2011-03-01 Thread TreKing
On Sun, Feb 27, 2011 at 5:31 AM, kajal patil patil.kaja...@gmail.comwrote: Kindly suggest the solution. Solution to what? You described about 4 different things in one run-on sentence. - TreKing