[android-developers] Transfer Messages without Service Provider

2009-10-23 Thread ragavendran s
How to transfer Messages from Android phone to another android phone without Service Provider... Is this Possible or Notif Yes Means pls let me know the Concept... Thanks in Advance.. with regards, Raghav.S --~--~-~--~~~---~--~~ You

[android-developers] Re: Transfer Messages without Service Provider

2009-10-23 Thread ragavendran s
... U can link 2 emulators and implement a SMS reciever and achieve this. On Fri, Oct 23, 2009 at 3:03 PM, ragavendran s sraghav.ra...@gmail.comwrote: How to transfer Messages from Android phone to another android phone without Service Provider... Is this Possible or Notif Yes

[android-developers] Transfer Messages without Service Provider

2009-10-23 Thread ragavendran s
though... U can link 2 emulators and implement a SMS reciever and achieve this. On Fri, Oct 23, 2009 at 3:03 PM, ragavendran s sraghav.ra...@gmail.comwrote: How to transfer Messages from Android phone to another android phone without Service Provider... Is this Possible

[android-developers] Can anybody tell pls.....

2009-10-12 Thread ragavendran s
Can anybody tell pls. I m new to android. Here is my question: example: |4|2|raghav|4|Roshan|5|raghul|6|sachin Wat i need means i want to separate this by string tokenizer(|) and store it into separate valuesthe first number 4indicates i need 4 list itms should display with name

[android-developers] Can anybody tell pls.....

2009-10-12 Thread ragavendran s
Can anybody tell pls. I m new to android. Here is my question: example: |4|2|raghav|4|Roshan|5|raghul|6|sachin Wat i need means i want to separate this by string tokenizer(|) and store it into separate valuesthe first number 4indicates i need 4 list itms should display with name

[android-developers] can anybody tell pls....

2009-10-12 Thread ragavendran s
Can anybody tell pls. I m new to android. Here is my question: example: |4|2|raghav|4|Roshan|5|raghul|6|sachin Wat i need means i want to separate this by string tokenizer(|) and store it into separate valuesthe first number 4indicates i need 4 list itms should display with name

[android-developers] can anybody tell pls......

2009-10-10 Thread ragavendran s
problem in StringTokenizer String str=one.1.two.2.three.3 Stringtokenizer tok=new Stringtokenizer(str); while(st.hasmoreTokens()) { sb.append(st.nextToken); } Sustem.out.println(sb.toString()); output: one 1 two 2 three 3 but i need output like this: one two three i want to cut the values

[android-developers] Re: can anybody tell pls......

2009-10-10 Thread ragavendran s
output like this: one two three i want to cut the values 1,2,3 Thanks in Advance Raghav.S On Sat, Oct 10, 2009 at 1:08 PM, AJ ajeet.invinci...@gmail.com wrote: what is st and sb ?? Thanks, AJ On Oct 10, 11:55 am, ragavendran s sraghav.ra...@gmail.com wrote: problem in StringTokenizer

[android-developers] Re: can anybody tell pls......

2009-10-10 Thread ragavendran s
Sorry Here is my Revised Code problem in StringTokenizer String str=one.1.two.2.three.3 StringBuffer sb; Stringtokenizer tok=new Stringtokenizer(str); while(tok.hasmoreTokens()) { sb.append(tok.nextToken); } Sustem.out.println(sb.toString()); output: one 1 two 2 three 3 but i need

[android-developers] Re: can anybody tell pls......

2009-10-10 Thread ragavendran s
); sb.append(\n); } System.out.println(sb.toString()); hope this helps you. Thanks, AJ On Oct 10, 1:47 pm, ragavendran s sraghav.ra...@gmail.com wrote: Sorry Here is my Revised Code

[android-developers] Re: can anybody tell pls......

2009-10-10 Thread ragavendran s
:57 PM, ragavendran s sraghav.ra...@gmail.comwrote: Hi AJ thanks for ur kind reply Here i need one more output: one 1 two 2 three 3 i want separate this like :one,two,three in list the list like this one two three when i click the one it will display 1

[android-developers] Problem in ListItem...

2009-10-06 Thread ragavendran s
can anybody tell how to retrieve the Listitem values from a list view For example.i m having 3 listitems such as 1.India 2.America 3.Australia if i click india in a listview it should display India...How can i get the list item value

[android-developers] Re: api key

2009-10-05 Thread ragavendran s
check whether u gave INTERNET permission or not.. On Mon, Oct 5, 2009 at 3:49 PM, android darioamor...@gmail.com wrote: I put the API key in the code and in XML but does not make me see the maps which could be the problem??? thanks

[android-developers] Re: Upload image to my database from phone

2009-10-02 Thread ragavendran s
pls tell the concept. On Fri, Oct 2, 2009 at 5:00 PM, Jodi Middleton jodi.middle...@gmail.comwrote: yes. On Oct 2, 6:42 am, ragavendran s sraghav.ra...@gmail.com wrote: In my app i want to Upload my photos to my phone database.when i click upload option it wil show browse

[android-developers] Upload image to my database from phone

2009-10-01 Thread ragavendran s
In my app i want to Upload my photos to my phone database.when i click upload option it wil show browse options and then i wil find the location of an image i.e., any folder...if i select any image it wil store it into my databse..whenever i want to view my photo means i will click

[android-developers] App for Storing Waypoints and Waytracks.......

2009-09-29 Thread ragavendran s
can anybody tel me . App for Storing Waypoints and Waytracks... This application involves the user can track thier waypoints in a compass or an map if anybody knows pls let me know where i can get these details --~--~-~--~~~---~--~~ You

[android-developers] ListView With Checkbox

2009-09-29 Thread ragavendran s
I m Having ListView With Checkboxes ...but if i Click the Checkbox ther is no response can u tel me what to add to my code. Thanks in advance, Raghav.S Her is My Code: final String[] options1 = new String[] {My Wedding To Do List,Categories,My Wedding Day

[android-developers] Problem in Checkbox

2009-09-28 Thread ragavendran s
I m Having ListView With Checkboxes ...but if i Click the Checkbox ther is no response can u tel me what to add to my code. Thanks in advance, Raghav.S Her is My Code: final String[] options1 = new String[] {My Wedding To Do List,Categories,My Wedding Day

[android-developers] Problem in Listview with Checkbox

2009-09-26 Thread ragavendran s
I am new to Android... Here i m Displaying Listview with Checkbox in ListActivityIf i Click the particular Checkbox it should says checked otherwise unChecked.. I dont know how to use this*onSetOncheckChangeListener* Thanks in Advance, Raghav.S *Here is My Code:* final

[android-developers] To Display Calendar ........

2009-09-24 Thread ragavendran s
i want to display calendar in screen ..when the user select the MM-DD- from calendar.. it should store in the database... can u tell any source or any site to find this... Thanks in advance... With Regards, Raghav.S --~--~-~--~~~---~--~~ You received this

[android-developers] Problem to count number of days between Two dates...

2009-09-24 Thread ragavendran s
I want to calculate the difference between two Dates..Can anybody tell how to calculate the difference between two days Here is my Codeit Displays Calendar and it displays the Local Time Zone Thanks in Advance... With regards, Raghav.S public class datedisplay extends

[android-developers] Re: Problem to count number of days between Two dates...

2009-09-24 Thread ragavendran s
Finally I got it.. Thanks for ur support On Fri, Sep 25, 2009 at 9:15 AM, ragavendran s sraghav.ra...@gmail.comwrote: I want to calculate the difference between two Dates..Can anybody tell how to calculate the difference between two days Here is my Code

[android-developers] Problem to add an image in ListActivity.

2009-09-22 Thread ragavendran s
I am new to android Problem to add an image in ListActivity...i took this code from *http://commonsware.com/Android/excerpt.pdf* ..eventhough i m having problem...if i run it says The Application Stopped Unexpectedly.. try Again...i dont know the reason..can u tel anybodypls point out

[android-developers] problem to display multi line text..

2009-09-21 Thread ragavendran s
I am new to android development... How to Display multi lines in a Screen... here i m using StringTokenizeri m displaying in Textviewit displays last text only ..i think it override the text with in it can u tell anybody how to Display a whole String in a Screen.here i want to

[android-developers] To add Image in Listview....

2009-09-21 Thread ragavendran s
how can i add image to my listview dynamically Thanks in advance.. with Regards, Raghav.S Here is My Code: .final String[] options1 = new String[] {My Wedding To Do List,My Reminders,My Appointments ,My Vendors,My Gift Tracker,My Wedding Budget Calculator,My

[android-developers] problem in checkbox....

2009-09-19 Thread ragavendran s
I am new to Android Development. can u tell anybody. how can i retrieve data from mysql database and display in Checkbox. Thanks in Advance. With regards, Raghav.S --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[android-developers] Problem in display List View With an Image

2009-09-18 Thread ragavendran s
can any one tell how to display the List with an Image in the left side of the view... Thanks in Advance.. with regards, Raghav.S --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group.

[android-developers] how to select item from arrayadapter

2009-09-18 Thread ragavendran s
i m having Array Adapter..it displays list views normalwhenever i click on that particular item from the list it doesn't workscan u tel me how to solve this Thanks in advance... with Regards, Raghav.S --~--~-~--~~~---~--~~ You received this message

[android-developers] problem in List Activity

2009-09-18 Thread ragavendran s
i m having ListActivity displays list views normalwhenever i click on that particular item from the list it doesn't works (i.e) it does not calls the another classcan u tel me how to solve this Thanks in advance... with Regards, Raghav.S

[android-developers] Re: problem in List Activity

2009-09-18 Thread ragavendran s
, options1)); getListView().setTextFilterEnabled(true); } On Fri, Sep 18, 2009 at 7:04 PM, Ne0 liamjamesalf...@googlemail.com wrote: Some code would be helpful, else your problem will not get solved! On 18 Sep, 14:24, ragavendran s sraghav.ra...@gmail.com wrote: i m having

[android-developers] Question about using radius in android.....

2009-09-06 Thread ragavendran s
I just saw in a project...In that project it shows lots of marker shows that if there is any plots available..Its a real estate projectIn that project they are sending latitude ,Longitude and also Radius to the database.I dont know why these radius are used... can u tell me the use of

[android-developers] Problem in getting Lattitude and Longitude

2009-09-03 Thread ragavendran s
if i run the code to get latitude and longitude in android 1.5 version i wil get the output clearly... but at the same time if i run the same cod e in google Api 1.5 it doesnt displays anthng... i htnk problem in getting latitude and longitude in DDMS.. Can any one tell me pls.. With

[android-developers] Re: Itemized overlay and Hellomapview

2009-09-03 Thread ragavendran s
On Thu, Sep 3, 2009 at 1:06 PM, sweet brou...@gmail.com wrote: hello everybody !!! I make the tutorial Hellomapview (http://developer.android.com/intl/fr/ guide/tutorials/views/hello-mapview.htmlhttp://developer.android.com/intl/fr/%0Aguide/tutorials/views/hello-mapview.html) if anyone have

[android-developers] Problem in sending thisString url to local server

2009-09-02 Thread ragavendran s
Problem in sending this url to local server when i execute this code it shows Dialog Box like this This Application Stopped Unexpectedly Force to Closeand try Again Can any one tel me how to correct this thanks, With Regards, Raghav.S This is my code: Button

[android-developers] Re: Itemized overlay

2009-09-02 Thread ragavendran s
First Step :hello Sweet first u ensure that u r marker image is placed in the res/drawable Second Step:Then U extend ur (HelloItemized Overlay)ItemizedOverlay class extends with ItemizedOverlay Third Step: try to Change ur Geo Point(It Should be Between the Range) On Wed, Sep 2, 2009 at 12:31

[android-developers] Problem in sending the String url to local server

2009-09-02 Thread ragavendran s
Problem in sending this url to local server when i execute this code it shows Dialog Box like this This Application Stopped Unexpectedly Force to Closeand try Again Can any one tel me how to correct this thanks, With Regards, Raghav.S This is my code: Button

[android-developers] Problem in Http Get method....pls tel me ...

2009-09-02 Thread ragavendran s
can u tell me how to send the Url to the server using Http Get method... Here i m trying to insert a name into the databse .If i execute the below showing code there is no response (i.e) no value is insert in to the database... i think the error is is in the Http meythod ..Would u tel me pls

[android-developers] Problem in Http Get Method..pls tell me..

2009-09-02 Thread ragavendran s
can u tell me how to send the Url to the server using Http Get method... Here i m trying to insert a name into the databse .If i execute the below showing code there it tells Connection to http:localhost refused i think the error is is in the Http method ..Would u tel me pls how to Correct

[android-developers] Problem in Geoceder Address and Country name are not Displaying

2009-09-01 Thread ragavendran s
whenever i run this code it shows Latitude and Longitude correctly... but i did'nt get the address,Country name and Postal code.Here I Used Reverse Geocoder. In my output Only Latitude and Longitude shows but Adddress Detaily are not Displaying can u tel me pls. thanks,

[android-developers] Problem in Reverse Geocoder...Address,Country Name are not Displaying...

2009-09-01 Thread ragavendran s
whenever i run this code it shows Latitude and Longitude correctly... but i did'nt get the address,Country name and Postal code.Here I Used Reverse Geocoder. In my output Only Latitude and Longitude shows but Adddress Detaily are not Displaying can u tel me pls. thanks, WithRegards,

[android-developers] Problem in Reverse Geocoder...Address,Country Name are not Displaying...

2009-09-01 Thread ragavendran s
whenever i run this code it shows Latitude and Longitude correctly... but i did'nt get the address,Country name and Postal code.Here I Used Reverse Geocoder. In my output Only Latitude and Longitude shows but Adddress Detaily are not Displaying can u tel me pls. thanks, WithRegards,

[android-developers] problem in Http Get method..can any one tell me pls...

2009-08-31 Thread ragavendran s
Can anyone tell what is the problem in the given code to retrieve the data from the local server by using Http Get method..pls give some example code..i tried but if i give the url the result i m getting same url in the text view...shall any one point out wat the error in the

[android-developers] Having problem to read data from the local host server using Http Get method....

2009-08-30 Thread ragavendran s
This is a code i m having to read a data from the sever using Http Get method but still i cant read the values from the localhost server. can anybody tell the correct code to replace this thanks, with regards, Raghav.S Code: package netw.htt; import java.io.IOException; import

[android-developers] Having problem to read data from the local host server using Http Get method....

2009-08-30 Thread ragavendran s
This is a code i m having to read a data from the sever using Http Get method but still i cant read the values from the localhost server. can anybody tell the correct code to replace this thanks, with regards, Raghav.S Code: package netw.htt; import java.io.IOException; import

[android-developers] can u tel me what are the attributes we want to specify in the scrollview xml file

2009-08-29 Thread ragavendran s
can u tel me what are the attributes we want to specify in the scrollview xml file bcoz i want to display scrollbar n my layout...i tried scrollview but it shows an error like force to closepls tel me the answer... thanks, with regards, Raghav.S

[android-developers] if i pass url in my program i m getting the result the same url is appear in the Textview but i need the answer Success.

2009-08-29 Thread ragavendran s
if i pass the url in my program i m getting the result the same url is appear in the Textview but i need the answer Success. can u pls tel me with regards, Raghav.S getInput = (EditText) this.findViewById(R.id.get_input); getOutput = (TextView) this.findViewById(R.id.get_output);

[android-developers] how to read values from the server using Http GET method

2009-08-29 Thread ragavendran s
how to read values from the server using Http GET method whenever i m passing the url to the server it returns same url in the textview i think i commited mistake in http connection using GET method..would u tel me pls how it is?.. pls... with regards, Raghav.S

[android-developers] How i can pass my String to Another page

2009-08-28 Thread ragavendran s
Hi , I am new to Android development.I want to transfer transfer my String(username) to another page. i m having some problems on it...so wil u please tel me the answer. with regards S.Raghav --~--~-~--~~~---~--~~ You received this message because

[android-developers] How can i transfer username to next page by Intent:

2009-08-28 Thread ragavendran s
How can i transfer username to next page by the Intent: package add.sam1; import android.app.Activity; import android.app.AlertDialog; import android.app.Dialog; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import

[android-developers] How i get the Selected item from the list Adapter.

2009-08-28 Thread ragavendran s
i m a beginner for Android development How i get the Selected item from the list Adapter. for example i m having the code: Code: final Spinner spinner = (Spinner) findViewById(R.id.testSpinner); ArrayAdapterString adapter = new ArrayAdapterString(this,

[android-developers] Re: How to call another class method.

2009-08-28 Thread ragavendran s
I think u may use like this ...Intent to call another .java class if successs u reply to me...thanks weather.java public class Weather extends Activity implements Button.OnClickListener { Intent intent = new Intent(this, homepage.class); startActivity(intent); }

[android-developers] In which layout it can easy to arrange the more number of editviewfield and textview.

2009-08-28 Thread ragavendran s
In which layout it can easy to arrange the more number of editviewfield and textview.. for example to create New user page... can u tel me pls... thanks, with regards, Raghav.S --~--~-~--~~~---~--~~ You received this message because you are

[android-developers] How can i use Scroll bar in my Linear layout view.....

2009-08-28 Thread ragavendran s
How can i use Scroll bar in my Linear layout view... can u pls tell me thanks Raghav.S --~--~-~--~~~---~--~~ 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] code for simple client server http communication

2009-08-28 Thread ragavendran s
I am new to android development can u give anybody .code for simple client server http communication i dont know how these client interact with server can u tel me the steps for this network concept...how we send the url connection to the serve. pls. thanks, with