[android-developers] Hi

2012-01-11 Thread chowdary nani
Hi All, I am working on json parsing i need help on sample code for passing the parsed data to list view without can any one help me for this here is my following code i am unable to display the list package com.incipio.bespoke; import java.io.IOException; import

Re: [android-developers] hi all

2012-01-11 Thread chowdary nani
Hi chandara your link has helped me a lot thanks for your time thanks for sending. On Wed, Jan 11, 2012 at 12:25 PM, Chandra Sekhar chandra4...@gmail.comwrote: Hi Naveen, I think this link may help u http://coderzheaven.com/2011/06/complex-json-string-parsing-in-android/ On Tue, Jan 10,

Re: [android-developers] hi

2012-01-11 Thread Ramu
json.data[0].id is the common JSON syntax On Tue, Jan 10, 2012 at 5:18 PM, chowdary nani naveenneeli...@gmail.com wrote: Hi All, I am working with json parsing Following is my json object will please any one help me how to parse id from that object in android

Re: [android-developers] Hi

2012-01-11 Thread TreKing
On Wed, Jan 11, 2012 at 3:35 AM, chowdary nani naveenneeli...@gmail.comwrote: i need help on sample code for passing the parsed data to list view without Without what? can any one help me for this Depends - can you explain the specific problem you're having? What have you done so far?

[android-developers] hi

2012-01-11 Thread chowdary nani
HI All, I need help on rss feed parsing in android can any one help me please. Thanks Naveen -- 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

Re: [android-developers] hi

2012-01-11 Thread Robinns
Please Google n find something n yes once u got error do request help u surely ell be helped On Jan 12, 2012 11:32 AM, chowdary nani naveenneeli...@gmail.com wrote: HI All, I need help on rss feed parsing in android can any one help me please. Thanks Naveen -- You received this

Re: [android-developers] hi

2012-01-11 Thread Jim Graham
On Thu, Jan 12, 2012 at 11:16:13AM +0530, chowdary nani wrote: I need help on rss feed parsing in android can any one help me please. I'm assuming that second line is a question. The answer is, no. Nobody can help you at this time, because you haven't: A) told us what you are having

[android-developers] hi

2012-01-11 Thread chowdary nani
Hi All, I am working on rss parsing i am unable to display the rss feeds and i am unable to find the problem. here is my code public class RSSReader extends Activity implements OnItemClickListener { public final String RSSFEEDOFCHOICE =

Re: [android-developers] hi

2012-01-11 Thread Raghav Sood
What exception are you getting? Post the appropriate part of the LogCat. On Thu, Jan 12, 2012 at 12:19 PM, chowdary nani naveenneeli...@gmail.comwrote: Hi All, I am working on rss parsing i am unable to display the rss feeds and i am unable to find the problem. here is my code public class

Re: [android-developers] hi

2012-01-11 Thread Robinns
Now u have the code.so far so good. Now point us where u have error? Check ur log? Don't expect someone will copy paste ur code to run n find the error? What abt ur manifest file? Ur prermission? On Jan 12, 2012 12:35 PM, chowdary nani naveenneeli...@gmail.com wrote: Hi All, I am working on rss

Re: [android-developers] hi

2012-01-11 Thread Robinns
Is the link u want to parse is in RSS format On Jan 12, 2012 12:35 PM, chowdary nani naveenneeli...@gmail.com wrote: Hi All, I am working on rss parsing i am unable to display the rss feeds and i am unable to find the problem. here is my code public class RSSReader extends Activity

Re: [android-developers] hi

2012-01-11 Thread chowdary nani
yes that is the link i need parse i am geetting error at reading the feeds i am unable to read the feeds i.e, i am getting empty eeds On Thu, Jan 12, 2012 at 12:27 PM, Robinns librain.ro...@gmail.com wrote: Is the link u want to parse is in RSS format On Jan 12, 2012 12:35 PM, chowdary nani

Re: [android-developers] hi

2012-01-11 Thread Robinns
Can u post the logcat error? On Jan 12, 2012 12:56 PM, chowdary nani naveenneeli...@gmail.com wrote: yes that is the link i need parse i am geetting error at reading the feeds i am unable to read the feeds i.e, i am getting empty eeds On Thu, Jan 12, 2012 at 12:27 PM, Robinns

[android-developers] hi

2012-01-10 Thread chowdary nani
Hi All, I am working with json parsing Following is my json object will please any one help me how to parse id from that object in android {data:[{id:38314877099_10150452362217100}]} Thanks Naveen -- You received this message because you are subscribed to the Google Groups Android Developers

Re: [android-developers] hi

2012-01-10 Thread Robinns
private void parseJson(String j){ JSONObject jObj = new JSONObject(j); JSONArray jArray - jObj.getJSONArray(data); for(int i=0;ijArray.length();i++){ JSONObject post = jArray.getJSONObject(i); System.out.print(post.getString(id)); } } Hope it helps On Tue, Jan 10, 2012 at 5:33

Re: [android-developers] hi

2012-01-10 Thread T.M.S.VIJAYKUMARR
Hi try like this JSONObject jObject = new JSONObject(result); JSONArray Array = jObject.getJSONArray(data); String id = currentjobsArray.getJSONObject(0).getString(id); On Tue, Jan 10, 2012 at 5:18 PM, chowdary nani naveenneeli...@gmail.comwrote: Hi All, I am working with json parsing

Re: [android-developers] hi

2012-01-10 Thread T.M.S.VIJAYKUMARR
id array mean try this JSONObject jObject = new JSONObject(result); JSONArray Array = jObject.getJSONArray(data); for(int i=0;iArray.length();i++){ JSONObject post = Array.getJSONObject(i); String id = currentjobsArray.getJSONObject(i).getString(id); } *else* JSONObject jObject = new

Re: [android-developers] hi

2012-01-10 Thread chowdary nani
Hi Robinns Thanks for your help thanks for response. your code help me a lot On Tue, Jan 10, 2012 at 5:25 PM, Robinns librain.ro...@gmail.com wrote: private void parseJson(String j){ JSONObject jObj = new JSONObject(j); JSONArray jArray - jObj.getJSONArray(data); for(int

[android-developers] hi all

2012-01-10 Thread chowdary nani
Hi All, I am working with json parsing Following is my json object will please any one help me how to parse id from that object in android {data:[{id:38314877099_10150452362217100,from:{name:Incipio Technologies}}]} Thanks Naveen -- You received this message because you are subscribed to the

[android-developers] Hi

2012-01-10 Thread chowdary nani
chowdary nani 6:01 PM (0 minutes ago) to android-develo. Hi All, I am working with json parsing Following is my json object will please any one help me how to parse name from that object in android {data:[{id:38314877099_ 10150452362217100,from:{name:Incipio Technologies}}]} Thanks Naveen --

Re: [android-developers] hi all

2012-01-10 Thread Chandra Sekhar
Hi Naveen, I think this link may help u http://coderzheaven.com/2011/06/complex-json-string-parsing-in-android/ On Tue, Jan 10, 2012 at 6:01 PM, chowdary nani naveenneeli...@gmail.comwrote: Hi All, I am working with json parsing Following is my json object will please any one help me how to

[android-developers] HI

2012-01-04 Thread Yuri Andrade Rodrigues
Hello, I'm Yuri and I'm brasilian, I study Eletric Engeenir. I'm starting with OS Android and I was worked with little Linux, I would like to learn of create app for mobile OS. Thanks for all Best Regards -- You received this message because you are subscribed to the Google Groups Android

Re: [android-developers] HI

2012-01-04 Thread Narendra Bagade
please refer http://developer.android.com/index.html On Tue, Jan 3, 2012 at 8:35 AM, Yuri Andrade Rodrigues yuri.fl...@gmail.com wrote: Hello, I'm Yuri and I'm brasilian, I study Eletric Engeenir. I'm starting with OS Android and I was worked with little Linux, I would like to learn of

[android-developers] hi

2011-12-18 Thread Bhanu Reddy
i am very eager to become an android developer. now i am studying engineering final year. can i get good guidance about android -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Hi, Where can I get the SDK and API Documentation of google's voice recogition?

2011-12-08 Thread TreKing
On Wed, Dec 7, 2011 at 3:37 AM, BackToTheFuture 454260...@qq.com wrote: is there an url I can reach? Yes, the docs: http://developer.android.com/reference/packages.html If you were to peruse that, you would find packages clearly labeled as being for voice and speech recognition

[android-developers] Hi, Where can I get the SDK and API Documentation of google's voice recogition?

2011-12-07 Thread BackToTheFuture
as the title. is there an url I can reach? thank you in advance. btw: I am a fresh. -- 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,

[android-developers] Hi, Where can I get the SDK and API Documentation of google's voice recogition?

2011-12-07 Thread BackToTheFuture
as the subject. is there an url I can reach? thank you in advance. btw: I am a fresh. -- 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,

[android-developers] hi

2011-12-05 Thread muhammed rafi
how installl malayalam font in ndroid -- 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

Re: [android-developers] hi

2011-12-05 Thread Jim Graham
On Sat, Dec 03, 2011 at 06:18:54PM +0530, muhammed rafi wrote: how installl malayalam font in ndroid Didn't you already ask this question? Yeah, you did...and I sent you an answer, too. That answer included telling you *NOT* to post your question over and over, in an attempt to piss people off

[android-developers] hi all, one problem to intercept KEYCODE_BACK event

2011-12-02 Thread tuxpcd
then soft keyboard was pop, I try to override onKeyDown() dispatchKeyEvent() and onBackPressed() method,but cannot intercept back key. Thanks! -- 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] Hi i am nithin pursuing B.Tech 3 rd year.CSE

2011-11-28 Thread Nithin Kandagatla
Am requesting you to send new notifications and related informations to our group. -- 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

[android-developers] HI,i have a question

2011-11-28 Thread LionHeart
My IDE is eclipse for javaEE,but i can not see the icon on emulator,my Operating System is Windows7 Ultimate,to be able to see the icon,i made the following operations: No.1,Format all my disks. No.2,Install Windows7 Ultimate. No.3,download eclipse for JAVAEE and install it. No.4,download

[android-developers] Hi this is basha

2011-10-13 Thread johny basha
hi can any help me i am new android developer. i want to display a chart that should be updated at run time with the user's data -- 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] hi

2011-10-12 Thread aditya rathod
whatsup -- 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+unsubscr...@googlegroups.com For more options,

[android-developers] HI i want to retrive the values from excel file

2011-10-12 Thread basha
Hi i am the new developer for phone-gap android.. i want some code, to retrieve the value from the excel sheet and stored it in an array. PLZ help me for that Regards Basha -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] hi

2011-10-12 Thread pr biztech
hello everyone -- 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+unsubscr...@googlegroups.com For more

[android-developers] hi

2011-09-26 Thread karthick MA
i need attandance application source for college with database.. regards M.A.Karthick -- 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

Re: [android-developers] hi

2011-09-26 Thread Robin Talwar
which college?? i have the code... i will add ur college id and u can use the code On Thu, Sep 22, 2011 at 11:30 PM, karthick MA karthickk...@gmail.comwrote: i need attandance application source for college with database.. regards M.A.Karthick -- You received this message

[android-developers] Hi

2011-09-16 Thread yoon
I am having trouble this ndk things. i try to run it and when i push the button which calls C source then exit rightaway with theses commands in Logcat. 09-16 02:39:15.886: INFO/DEBUG(31): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** 09-16 02:39:15.886: INFO/DEBUG(31): Build

[android-developers] Hi

2011-09-13 Thread Tushar Sahni
Hi all,,, I have developed an application that is made in android 3.2. The project contains 5 tabs and activity group.Is it possible for me to run the same code in android 3.2 ..? But when i run the code its crashing.Its working fine in android 2.1 and above... Is dere any solution in which

Re: [android-developers] Hi

2011-09-13 Thread TreKing
On Tue, Sep 13, 2011 at 5:59 AM, Tushar Sahni tusharsahni...@gmail.comwrote: I have developed an application that is made in android 3.2. The project contains 5 tabs and activity group. You should not be using ActivityGroup. Use Fragments. Is it possible for me to run the same code in

Re: [android-developers] hi

2011-08-31 Thread Appaholics
Unless you are trying to debug your own app and are getting this type of error this is not an appropriate question for this list. If you are doing the aforementioned then please provide some more details. Also hi is not a very descriptive subject. Thanks On Tue, Aug 30, 2011 at 11:30 AM, gaby

Re: [android-developers] hi

2011-08-31 Thread Luis Ramirez
If nothing else works try a factory reset. On Aug 30, 2011 6:22 PM, gaby debro gabilita2...@gmail.com wrote: Hello help me I can't install any aplication in ma G1 after downloading it always says unsuccess -- You received this message because you are subscribed to the Google Groups Android

[android-developers] hi

2011-08-30 Thread gaby debro
Hello help me I can't install any aplication in ma G1 after downloading it always says unsuccess -- 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

[android-developers] hi how to attach a file in own gmail function

2011-08-02 Thread aparna rani
hii i am implement the one gmail function for sending file public void addAttachment(String filename) throws Exception { BodyPart messageBodyPart = new MimeBodyPart(); DataSource source = new FileDataSource(filename); messageBodyPart.setDataHandler(new

Re: [android-developers] hi how to attach a file in own gmail function

2011-08-02 Thread Fred Niggle
I had a spot of trouble getting this to work, the root of the problem is the path to the file you attach. My solution is: String dir= root.getAbsolutePath(); emailIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse(file://+dir+/+csvFname)); hope this helps, Fred On 02/08/2011, aparna rani

[android-developers] Hi Alireza

2011-08-01 Thread Jupiterz
Your work is nice. -- 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+unsubscr...@googlegroups.com For

[android-developers] hi my name is vinodh

2011-07-21 Thread vinodh venkatesh
we have one frame work called DAB ... we need in port it in Android platform is it possible -- 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

[android-developers] hi

2011-06-30 Thread umair yaya
i am umair your are you doing -- 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] HI

2011-06-26 Thread guru sagar
Hi , Is there any possibilty to get callback from in built browser in android when page is completly loaded . Thanks, Gurusagar -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] HI

2011-06-26 Thread Mark Murphy
No, sorry. If you need that level of control, you need to embed a WebView widget in your application. On Sun, Jun 26, 2011 at 2:57 AM, guru sagar gurusagar...@gmail.com wrote: Hi ,                       Is there any possibilty to get callback from in built browser in android when page is

[android-developers] Hi-Launch time

2011-06-26 Thread guru sagar
Hi developers , I want to check the launch time for in built browser ?. am not getting callbacks for the in built browser Thanksinadvance -- Thanks, Gurusagar -- You received this message because you are subscribed to the Google Groups Android Developers group. To

Re: [android-developers] Hi-Launch time

2011-06-26 Thread Kumar Bibek
Launch time? What does that mean exactly? *Thanks and Regards, Kumar Bibek* * http://techdroid.kbeanie.com http://www.kbeanie.com* On Mon, Jun 27, 2011 at 10:39 AM, guru sagar gurusagar...@gmail.com wrote: Hi developers , I want to check the launch time for in

Re: [android-developers] Hi-Launch time

2011-06-26 Thread guru sagar
i want to check the app launch time for in built browser for varoius devices . Is it possible On Mon, Jun 27, 2011 at 10:40 AM, Kumar Bibek coomar@gmail.com wrote: Launch time? What does that mean exactly? *Thanks and Regards, Kumar Bibek* * http://techdroid.kbeanie.com

Re: [android-developers] Hi-Launch time

2011-06-26 Thread Kumar Bibek
App Launch time in in-built browser? Still, I am not sure what is your question. *Thanks and Regards, Kumar Bibek* * http://techdroid.kbeanie.com http://www.kbeanie.com* On Mon, Jun 27, 2011 at 10:45 AM, guru sagar gurusagar...@gmail.com wrote: i want to check the app launch time for in

Re: [android-developers] Hi-Launch time

2011-06-26 Thread guru sagar
launch time for android browser . On Mon, Jun 27, 2011 at 10:47 AM, Kumar Bibek coomar@gmail.com wrote: App Launch time in in-built browser? Still, I am not sure what is your question. *Thanks and Regards, Kumar Bibek* * http://techdroid.kbeanie.com http://www.kbeanie.com* On

Re: [android-developers] Hi-Launch time

2011-06-26 Thread guru sagar
Hi Kumar , If you dont mine shall i send chat request to you . On Mon, Jun 27, 2011 at 10:58 AM, guru sagar gurusagar...@gmail.com wrote: launch time for android browser . On Mon, Jun 27, 2011 at 10:47 AM, Kumar Bibek coomar@gmail.comwrote: App Launch time in in-built

Re: [android-developers] Hi-Launch time

2011-06-26 Thread Kumar Bibek
Time till ? 1. Browser is visible? 2. WebPage starts loading? 3. Scripts end loading? 4. Page loading complete? *Thanks and Regards, Kumar Bibek* * http://techdroid.kbeanie.com http://www.kbeanie.com* On Mon, Jun 27, 2011 at 10:58 AM, guru sagar gurusagar...@gmail.com wrote: launch time for

Re: [android-developers] Hi-Launch time

2011-06-26 Thread guru sagar
when browser is visible , On Mon, Jun 27, 2011 at 11:00 AM, Kumar Bibek coomar@gmail.com wrote: Time till ? 1. Browser is visible? 2. WebPage starts loading? 3. Scripts end loading? 4. Page loading complete? *Thanks and Regards, Kumar Bibek* * http://techdroid.kbeanie.com

Re: [android-developers] Hi-Launch time

2011-06-26 Thread Kumar Bibek
I don't think you can do that. The browser app is not in your control. *Thanks and Regards, Kumar Bibek* * http://techdroid.kbeanie.com http://www.kbeanie.com* On Mon, Jun 27, 2011 at 11:03 AM, guru sagar gurusagar...@gmail.com wrote: when browser is visible , On Mon, Jun 27, 2011 at 11:00

[android-developers] Hi

2011-06-09 Thread vijay Kumar
hi... i am new for android -- 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+unsubscr...@googlegroups.com

[android-developers] Hi

2011-06-09 Thread vijay Kumar
hi.. i am new for android -- 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+unsubscr...@googlegroups.com

Re: [android-developers] hi

2011-05-12 Thread Justin Anderson
Seriously? http://www.catb.org/~esr/faqs/smart-questions.html Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Tue, May 10, 2011 at 12:01 AM, Ravi kumar Karunanithi akkraviku...@gmail.com wrote: hi i;'m new to android developer, can u tel me, how

[android-developers] hi

2011-05-11 Thread Ravi kumar Karunanithi
hi i;'m new to android developer, can u tel me, how to select a particular date of day from the opening calendar when i click the button... pls give me the code... i'm stil waiting... -- You received this message because you are subscribed to the Google

[android-developers] Hi all

2011-04-28 Thread Muhammad Nabeel Arif
I am new to android development. I am trying to create a folder on sdCard and set it's visibility to false. That is, I want to create a hidden folder on sdcard. Can anybody please share a piece of code to do that. Thanks. -- You received this message because you are subscribed to the Google

Re: [android-developers] Hi all

2011-04-28 Thread TreKing
On Wed, Apr 27, 2011 at 12:59 AM, Muhammad Nabeel Arif nabeel.arif...@gmail.com wrote: That is, I want to create a hidden folder on sdcard. This has nothing to do with Android, beyond getting the path to the SD card. Can anybody please share a piece of code to do that. There is plenty of

[android-developers] hi, help a newbie :)

2011-04-20 Thread Siva.Nitesh
hi there!!! I have to develop an app which should satisfy the following requirement When an user (owner) SMSes to the android mobile with this app installed and with his user password, the app should return the mobiles current location using GPS through a SMS Is this possible to implement and

[android-developers] hi friends visit this page you have many friends

2011-03-30 Thread GR
http://123maza.com/75/play814/ -- 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

Re: [android-developers] Hi, all, how to implement the layout as google reader's news ListItem

2011-03-29 Thread TreKing
On Mon, Mar 28, 2011 at 5:32 AM, Longer xlhongultim...@gmail.com wrote: My question is: the ListItem's view shows news title and its source together. But the title and source have different font style, how to get this? http://developer.android.com/reference/android/text/Spanned.html

[android-developers] Hi, all, how to implement the layout as google reader's news ListItem

2011-03-28 Thread Longer
Please have a look at the photo in this link below: http://www.wareground.com/articles/android_google_reader_app_updated_with_new_widgets_and_ui_tweaks My question is: the ListItem's view shows news title and its source together. But the title and source have different font style, how to get

[android-developers] Hi... Flocks

2011-03-21 Thread Narendra Padala
Hi..Flocks, I am new to android, up to now i am java/j2ee/php/cakephp web developer now i move on to android, please give some suggestion to learn very quickly Android, -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

Re: [android-developers] Hi... Flocks

2011-03-21 Thread TreKing
On Mon, Mar 21, 2011 at 6:34 AM, Narendra Padala checksumandr...@gmail.comwrote: please give some suggestion to learn very quickly Android RTM, very quickly. - TreKing

Re: [android-developers] HI

2011-03-14 Thread Michael Elmsly
Technically it is the platforms fault. OK - so the spec requires pairing and for security reasons you always want the user to be responsible for that (no autopairing or hidden pairing of devices). Since this means you can't allow apps to control pairing the logical thing to do is open the

Re: [android-developers] HI

2011-03-12 Thread Marcin Orlowski
On 12 March 2011 01:53, Kristopher Micinski krismicin...@gmail.com wrote: Not true if you're using local wifi. There's no local wifi. You got either infrastructure or ad-hoc mode. First one is supported by android but needs access point to be available and second one alows direct comunication

Re: [android-developers] HI

2011-03-12 Thread Kostya Vasilyev
12.03.2011 14:08, Marcin Orlowski пишет: On 12 March 2011 01:53, Kristopher Micinskikrismicin...@gmail.com wrote: Not true if you're using local wifi. There's no local wifi. If both phones are connected to the same WiFi router, they will be able to exchange data over TCP/IP without it

Re: [android-developers] HI

2011-03-12 Thread Kristopher Micinski
Along with Koysta's explanation of what I was saying, what if both phones are connected to internet using .a router, then both can communicate without using a data plan. I don't know if this is how most people use their phones, but without a data plan (which seems almost unheard of these days)

Re: [android-developers] HI

2011-03-12 Thread Marcin Orlowski
On 12 March 2011 13:26, Kostya Vasilyev kmans...@gmail.com wrote: There's no local wifi. If both phones are connected to the same WiFi router, they will be able to exchange data over TCP/IP without it traveling out to the Internet and back. One could call this local WiFi, although that's

Re: [android-developers] HI

2011-03-12 Thread Marcin Orlowski
On 12 March 2011 16:57, Kristopher Micinski krismicin...@gmail.com wrote: Note that I *never* mentioned using ad hoc mode, where did you get that? Read my previous post. There's no much choice if you go for Wifi - either you use infrastructure mode which require, well, infrastructure with

Re: [android-developers] HI

2011-03-12 Thread Kristopher Micinski
On Sat, Mar 12, 2011 at 3:37 PM, Marcin Orlowski webnet.andr...@gmail.comwrote: On 12 March 2011 16:57, Kristopher Micinski krismicin...@gmail.com wrote: Note that I *never* mentioned using ad hoc mode, where did you get that? Read my previous post. There's no much choice if you go for

Re: [android-developers] HI

2011-03-12 Thread Marcin Orlowski
You see a need of entering 4 digits (usually once per pair of devices) a high barrier, and at the same time it's no problem that you need hardware router present? Good luck with your app in the woods :)  With my app in a similar situation (an app for university students to exchange class

Re: [android-developers] HI

2011-03-11 Thread Marcin Orlowski
On 11 March 2011 08:00, Kristopher Micinski krismicin...@gmail.com wrote: P.s., Bluetooth API support seems to be not that amazingly great, and you have to pair the phones first, which is annoying. That's the way it works. And you can pair it only occe, so no big deal anyway. playing your

Re: [android-developers] HI

2011-03-11 Thread Kristopher Micinski
Not true if you're using local wifi. Kris On Fri, Mar 11, 2011 at 9:49 AM, Marcin Orlowski webnet.andr...@gmail.comwrote: On 11 March 2011 08:00, Kristopher Micinski krismicin...@gmail.com wrote: P.s., Bluetooth API support seems to be not that amazingly great, and you have to pair the

Re: [android-developers] HI

2011-03-11 Thread Kristopher Micinski
Actually, for work we had an application that required a similar application. Instead of using Bluetooth, we faked it in this way, and in our situation the people using phones were pretty much always in contact with a wireless router (in an engineering building of our university). It worked great,

Re: [android-developers] HI

2011-03-10 Thread Kristopher Micinski
P.s., Bluetooth API support seems to be not that amazingly great, and you have to pair the phones first, which is annoying. (People always have to pair before playing your game!). Can you fake it using TCP/IP? Kris On Thu, Mar 10, 2011 at 1:47 AM, Marcin Orlowski webnet.andr...@gmail.comwrote:

Re: [android-developers] HI

2011-03-10 Thread Kristopher Micinski
(But of course, having to pair isn't the Android platform's fault, it's just 802.15.1 in general :-). Kris On Fri, Mar 11, 2011 at 2:00 AM, Kristopher Micinski krismicin...@gmail.com wrote: P.s., Bluetooth API support seems to be not that amazingly great, and you have to pair the phones

[android-developers] HI

2011-03-09 Thread bhaskar bommala
Hi I am new to the android development , i need to access 2 android devices as remote devices each other via bluetooth.. for example if i press the 1 as input from device 1 that should appear on device 2 .. Thanks in advance.. can you please help me in this.. -- You received this message

Re: [android-developers] HI

2011-03-09 Thread Marcin Orlowski
On 8 March 2011 19:40, bhaskar bommala bhaskar...@gmail.com wrote: Hi I am new to the android development , i need to access 2 android devices as remote devices each other via bluetooth.. for example if i press the 1 as input from device 1 that should appear on device 2 .. See SDK samples.

[android-developers] Hi all. This question is really annoying. Hope someone can come up with some advice. About C2DM

2011-03-04 Thread 刘思聪
Hi there: This problem has been confusing me for hours. I try to use google push to get register to a certain server. But first step is to get register_id, right? x...@gmail.com is the email address that I use to apply for google register_id. And the rest of the codes, are the same as in Android

[android-developers] Hi, all. Hope someone could give me a hand.

2011-03-03 Thread 刘思聪
Hi: I was wondering, how to send registration_id (of c2dm) to a certain server? I looked up the Android google documentation, but still confused. We should send our own information, such as username, together with registeration_id, right? If so, we should put those Java codes in

[android-developers] Hi, all. How to read JSON format from server?

2011-03-02 Thread kevinlsc
Hi, all. I'm new to Android. Right now I'm trying to read response from server, which uses JSON format to send my register information, for instance, username, register_id which is produced by the server, and the connection message. Is there any advice cause I'm really confused by this task.

[android-developers] Hi. Get an IOException when httpclient.execute(httppost);

2011-03-02 Thread kevinlsc
Hi. I came across IOException when i do post: httpclient.execute(httppost);! The following is part of my codes: JSONObject json = new JSONObject(); json.put(username, ); json.put(PhoneType, X); StringEntity se = new

Re: [android-developers] Hi, all. How to read JSON format from server?

2011-03-02 Thread Justin Anderson
Read up on the JSON format... What part, exactly, are you having a problem with? What have you tried so far? On Mon, Feb 28, 2011 at 11:49 AM, kevinlsc kevin...@gmail.com wrote: Hi, all. I'm new to Android. Right now I'm trying to read response from server, which uses JSON format to send my

Re: [android-developers] Hi, all. How to read JSON format from server?

2011-03-02 Thread TreKing
On Mon, Feb 28, 2011 at 12:49 PM, kevinlsc kevin...@gmail.com wrote: Is there any advice cause I'm really confused by this task. Advice: use Google. Something like How to read JSON with Java. -

Re: [android-developers] hi group iam new to this group and new to android developement

2011-02-15 Thread 劲男王
Go on! 2011/2/12 TreKing treking...@gmail.com On Fri, Feb 4, 2011 at 6:43 AM, Vivek Sharma vivek.sha...@studioapp.comwrote: i have stuck here so please help me so help me out Help you with what? Your post provides almost no information beyond a basic description of what you're trying

[android-developers] Hi

2011-02-15 Thread Mohamed Zubair
Hi, Am beginner to android.Please provide the beginners reference link to me. -- 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,

[android-developers] hi group iam new to this group and new to android developement

2011-02-11 Thread Vivek Sharma
hello group, i am new to android development , i was trying hand on simple gridview and tabs and my all features are working properly , iam able to get the image position and the image view but i want to display which image i have click , i have stuck here so please help me so help me out --

Re: [android-developers] hi group iam new to this group and new to android developement

2011-02-11 Thread TreKing
On Fri, Feb 4, 2011 at 6:43 AM, Vivek Sharma vivek.sha...@studioapp.comwrote: i have stuck here so please help me so help me out Help you with what? Your post provides almost no information beyond a basic description of what you're trying to do.

Re: [android-developers] hi

2011-01-28 Thread TreKing
On Thu, Jan 27, 2011 at 11:16 PM, tushar sahni tusharsahn...@gmail.comwrote: I will be greatly thankful to u for any contribution or coordination Step 1 - Reread your own post. Step 2 - Ask, does this make sense to anyone that knows nothing about my project?. Step 3 - Answer yourself, No,

[android-developers] hi

2011-01-27 Thread tushar sahni
Hi.all I am to developing a game application in Android.I have designed the splash screen.Implemented the functionality.Now the main problem i am facing is When i have to tap images on icons.And other problem i am facing is as follows 1.1.3 Tap Items This screen allows the user to

[android-developers] hi

2010-12-28 Thread shahadat rohman
Hi Android, How do you do? im realy glad to find you in group and xsited to find the new softwers and much more letest program. Thank You Shahadat Rahman From Kuwait -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

<    1   2   3   4   >