Re: [android-developers] Hi

2012-02-05 Thread ajaykumar kanchak
Hi, To learn android you need 1) Internet in your pc or laptop 2) download eclipse 3) download adt plugin for android and add plugin in eclipse 4) download android sdk and add its location in eclipse android plugin for the whole process just search in google and you android.com is the site where

Re: [android-developers] hi all

2012-02-03 Thread TreKing
On Thu, Feb 2, 2012 at 10:41 PM, chowdary nani naveenneeli...@gmail.comwrote: Here i am able to parse the xml page which is on server when i have given the url directly. but i need for dynamically created url This has nothing to do with Android. Do you understand Java and variables?

Re: [android-developers] Hi

2012-01-30 Thread Daniel Drummond
Read everything at d.android.com, watch videos from Google IO, read some books, get on the android irc channel, read the Android blog. Above all code, try out different things, and enjoy it! On Jan 26, 2012 6:03 PM, siri siritullimi...@gmail.com wrote: Dear all i started to learn android plz

Re: [android-developers] Hi

2012-01-26 Thread TreKing
On Tue, Jan 24, 2012 at 3:27 AM, siri siritullimi...@gmail.com wrote: Dear all i started to learn android plz guide me http://www.googleguide.com/about/ http://developer.android.com/index.html http://www.catb.org/~esr/faqs/smart-questions.html Also, the word is spelled please.

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?

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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.

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

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,

Re: [android-developers] Hi..email validation problem

2010-12-09 Thread Mark Murphy
1. This is not related to Android. 2. It is not possible, short of sending the user an email and seeing if it works. There are plenty of Java regular expressions you can use with the Pattern and Matcher classes to make sure the email address is not completely rubbish (e.g., missing the @ sign).

Re: [android-developers] Hi All, Please help me!!

2010-09-30 Thread TreKing
On Thu, Sep 30, 2010 at 12:56 PM, Ulzii ter...@gmail.com wrote: The certificate that signed this apk is not valid until the future. This usually means the time on your computer, at the time you signed your app, was ahead of the real current time. Try manually resetting your system clock to

Re: [android-developers] hi

2010-08-25 Thread Frank Weiss
It's not like no one has explained Android before, http://developer.android.com -- 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

Re: [android-developers] Hi, really need help with Android Camera

2010-08-13 Thread Pedro Teixeira
Just don't know anymore where to do the stopPreviews and releases... just before the Intent onClick ?! That order is not working for me.. On Aug 11, 2010, at 5:32 PM, Mark Murphy wrote: You are getting Method called after release() triggered by a call to stopPreview() from your

Re: [android-developers] Hi, really need help with Android Camera

2010-08-13 Thread Pedro Teixeira
Hello .. can someone help me with this? I'm really frustrated... I've try releasing the camera and changing the code but im always getting the same error.. 3 days of this.. how annoying :/ PS: the new activity is a cam activity also with the same code.. at least for now code:

Re: [android-developers] Hi, really need help with Android Camera

2010-08-11 Thread Mark Murphy
On Wed, Aug 11, 2010 at 10:25 AM, Pedro Teixeira pedroteixeir...@gmail.com wrote: Hi there, I have a cameraView class which shows me the Cam View with a button placed on the corner. Once I click that button I'd like to go to another activity which also contains the camera view but some other

Re: [android-developers] Hi, really need help with Android Camera

2010-08-11 Thread Pedro Teixeira
Hey there, Thanks for the quick answer. I also considered keeping everything in the same activity, but as you, I'm also a fan of small independent and specific activities. The thing is.. one of this camera activities will work with pictures and my server database, and the other one will work

Re: [android-developers] Hi, really need help with Android Camera

2010-08-11 Thread Pedro Teixeira
I've tried stop the cam preview and release it before calling the intent.. it actually goes to the other activity now. but gives an error 1 second after This is the errors on the logcat: 08-11 17:22:06.943: ERROR/MediaPlayer(542): Unable to to create media player 08-11 17:22:06.953:

Re: [android-developers] Hi, really need help with Android Camera

2010-08-11 Thread Mark Murphy
You are getting Method called after release() triggered by a call to stopPreview() from your surfaceDestroyed(). Call stopPreview() before release()-ing the Camera. On Wed, Aug 11, 2010 at 12:24 PM, Pedro Teixeira pedroteixeir...@gmail.com wrote: I've tried stop the cam preview and release it

Re: [android-developers] Hi, really need help with Android Camera

2010-08-11 Thread Pedro Teixeira
I had that already and won't work anyway, here is the code: ThenNnowMode.setOnClickListener(new View.OnClickListener() { public void onClick(View v) { mCamera.stopPreview(); mCamera.release(); Intent TNNIntent = new

Re: [android-developers] hi

2010-07-22 Thread Frank Weiss
Then go to the documentation http://developer.android.com -- 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

2010-07-08 Thread TreKing
On Sat, Jul 3, 2010 at 5:30 AM, Ranjith sranjith1...@gmail.com wrote: what can i do netbeans with sql database connection? You have my vote for worst post ever. - TreKing - Chicago transit tracking

回复: Re: [android-developers] Hi, anyone knows how to install python on android?

2010-06-19 Thread 铮王
Oh.I think it must there are ways to install linux apps ,but i'm so appreciate for your answer ,thanks , hope someone will help me on it... 在 2010-6-18 下午4:16,Mark Murphy mmur...@commonsware.com编写: On Wed, Jun 16, 2010 at 11:24 PM, J之道 hbyw...@gmail.com wrote: As the title ,I'm an

Re: 回复: Re: [android-developers] Hi, anyone kn ows how to install python on android?

2010-06-19 Thread David Turner
2010/6/19 铮王 hbyw...@gmail.com Oh.I think it must there are ways to install linux apps ,but i'm so appreciate for your answer ,thanks , hope someone will help me on it... No, actually Android is very different from a standard Linux distribution, and you can't install Linux apps on it. The

Re: [android-developers] Hi, anyone knows how to install python on android?

2010-06-18 Thread Mark Murphy
On Wed, Jun 16, 2010 at 11:24 PM, J之道 hbyw...@gmail.com wrote: As the title ,I'm an absolutely newbie ,and I don't know how to get my milestone install some valuable linux software , for example ,MySQL ,Apache ,and so on. You can't install MySQL ,Apache ,and so on. You can get Python via the

Re: [android-developers] Hi All

2010-04-28 Thread Dmitri Plotnikov
If it is a Google account, you also need to add the contact to a visible group, e.g. My Contacts. If it is your own type of account, you need to set UNGROUPED_VISIBLE=1 in the corresponding ContactsContract.Settings row. On Wed, Apr 28, 2010 at 3:46 AM, Sergey sergey...@gmail.com wrote: I

Re: [android-developers] Hi Question about menu

2010-04-22 Thread ~ TreKing
On Thu, Apr 22, 2010 at 3:36 AM, 智超 薛 suner...@gmail.com wrote: anyone know how to make it work? Try checking if (myMenu != null), since, you know, you probably want a valid object to add stuff to.

Re: [android-developers] Hi

2010-04-21 Thread ~ TreKing
On Wed, Apr 21, 2010 at 7:11 AM, subrat kumar panda evergreen.sub...@gmail.com wrote: but how i change the text color to black. 1) What text color? 2) Hi is probably the most useless title for a post you can come up with. Try to give your posts a title that is indicative of the subject

Re: [android-developers] Hi every one

2010-03-24 Thread TreKing
On Mon, Mar 22, 2010 at 11:31 PM, hany hanumanthu...@gmail.com wrote: I am the new learner in android. THE new learner!? so please send ever basic code and examples Uh ... no. There are plenty of online samples, like the official documentation, which I won't even bother linking so you

Re: [android-developers] hi

2010-03-22 Thread Kevin Duffey
Haha. I don't get why this was posted either. lol On Fri, Mar 19, 2010 at 3:19 AM, Sean Hodges seanhodge...@googlemail.comwrote: On Thu, Mar 18, 2010 at 1:21 PM, akshu aksharanadaha...@gmail.com wrote: i don't know about pc. Have you tried turning it off and on again? -- You received

Re: [android-developers] hi

2010-03-19 Thread Sean Hodges
On Thu, Mar 18, 2010 at 1:21 PM, akshu aksharanadaha...@gmail.com wrote: i don't know about pc. Have you tried turning it off and on again? -- 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

2010-01-19 Thread Miguel Morales
Hey Rakesh, I have yet to see any good complete tutorials on making an android game. I think this is because there is more than one way to make a game in android. For example, you can make it a flash game and have it run on the browser. Or you can use the Canvas classes provided, which makes

Re: [android-developers] hi

2010-01-19 Thread Kevin Duffey
I am watching this now. Pretty kewl. This guy talks really fast tho. :D On Tue, Jan 19, 2010 at 10:34 AM, Miguel Morales therevolti...@gmail.comwrote: Hey Rakesh, I have yet to see any good complete tutorials on making an android game. I think this is because there is more than one way to

<    1   2