Re: [android-developers] Re: Looking : Java Developer with Sencha @ Boston MA

2016-03-25 Thread Jerry Millar
o this group, send email to android-developers@googlegroups.com. > Visit this group at https://groups.google.com/group/android-developers. > To view this discussion on the web visit > https://groups.google.com/d/msgid/android-developers/b41e6939-a8e3-4cd7-a3ca-6d712cea6b18%40googlegroups.com > <

[android-developers] Re: AsyncTask in Android 4.0

2012-05-21 Thread Jerry Stralko
I'm trying to update my codebase to use ThreadPoolExecutor, but I found this to be odd: /** @hide */ public static void setDefaultExecutor(Executor exec) { sDefaultExecutor = exec; } So why is this method hidden? So I can't globally set the DefaultExecutor to ThreadPool?

[android-developers] Re: AsyncTask in Android 4.0

2012-05-21 Thread Jerry Stralko
On Friday, April 20, 2012 3:16:35 PM UTC-4, Nathan wrote: Still adjusting to the changes in Android 4.0 regarding AsyncTask. If I understand right, the default behavior of execute is changing to one single thread pool with only one thread? With the reason cited that programmers are not

[android-developers] How to read meminfo?

2011-12-15 Thread Jerry Chen
I was troubled in reading dumpsys meminfo especially for the column: Local Binders actually, I found my program crashed when Local Binders is high. 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] My Newbie problem with compiling the HelloAndroid App

2011-11-29 Thread Jerry
suggest a different tutorial app for a green Android developer like myself, or, somehow, help me get past this problem in the HelloAndroid tutorial? Thanks for any help. Jerry -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group

[android-developers] search box unexpected display

2011-11-25 Thread Jerry Cui
Dear all, I open a search website, just like google.com,and input a word at the text blank, then click the Search Button on the website (not inputmethod), and click the HOME key return to destop. When I enter the Browser and rotate the phone ,quick search box displayed with the word I

Re: [android-developers] java

2011-06-22 Thread Jerry cui
You can read Hello Android first. On Mon, Jun 20, 2011 at 2:37 AM, Richard Davis richarddavis1...@gmail.comwrote: I was wondering if anybody knew of a book or anything of the sort that could teach sombody to write in java without going to collage i have alot of time for reading. The reason I

[android-developers] How to relocate AutoCompleteTextView's dropdown window to ListView?

2011-06-07 Thread Jerry Joe
found that the dropdown list is not rendered in the ListView, but floating at top of the AutoCompleteTextView. Please help me on this or just give me some tips. Thanks! -- Jerry Joe -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

Re: [android-developers] Re: Market sales suddenly cut in half

2011-04-25 Thread Jerry Fan
I am also experiencing sales drop these two days especially today, On Tue, Apr 26, 2011 at 4:51 AM, Brill Pappin bpap...@sixgreen.com wrote: FYI - CANCELLED would include uninstalls AND failed orders. -- You received this message because you are subscribed to the Google Groups Android

[android-developers] efficient wait on LunarLander

2011-02-10 Thread Jerry
I am looking at the android LunarLander simple game example. I am surprised that the drawing thread Run() does not involve any efficient waiting. It just infinitely redraw the screen even if there is no change on the Physics. Even though I did not find any responsive issue(Maybe it is because

[android-developers] Re: 3.0 Preview SDK won't install

2011-02-03 Thread Jerry Hildenbrand
I was able to download the preview from a new install. Apparently this bug(?) only affects existing installations of the SDK. Hopefully someone with some insight chimes in here. On Jan 29, 6:37 pm, Darren Hinderer hindenb...@gmail.com wrote: Nope. I haven't tried anything else, I'm hoping it's

[android-developers] Re: Is there any android expert from Google or any other company?

2010-12-06 Thread Jerry
30, 5:06 am, Droid rod...@gmail.com wrote: AFIK you can use the libraries from yournewvoicerecogniser and simply do not call the google one. You need to do something with the audio input too. I saw a simpler java OS one somewhere but did not bother to add it. On Nov 26, 9:45 am, Jerry chunlei

[android-developers] Is there any android expert from Google or any other company?

2010-11-29 Thread Jerry
My question on framework to integrate a new voice recognition engine got no help :) Any one want to help out! TIA! -- 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] framework to integrate a new voice recognition engine.

2010-11-24 Thread Jerry
I need to integrate a new voice recognition engine (written in C/C++) into android. Is there a framework to follow like the one provided by eyes-free? e.g Maybe Hands-free? or something? As google voice search (actions? for 2.2) is accessed through Internet, Mine will be local one on the

[android-developers] framework to integrate a new voice recognition engine.

2010-11-24 Thread Jerry
I need to integrate a new voice recognition engine (written in C/C++) into android. Is there a framework to follow like the one provided by eyes-free? e.g Maybe Hands-free? or something? As google voice search (actions? for 2.2) is accessed through Internet, Mine will be local one on the

Re: [android-developers] Re: Kill an app / package in API 8 (Froyo)

2010-10-13 Thread Jerry Fan
You can use getRunningTaskInfo compare against getRunningAppProcessInfo. If process of particular component is not in runnAppProcess list, then you know it is deleted. I used this trick to work around the new kill process behavior. On Thu, Jul 22, 2010 at 11:12 PM, Marcin_GUmeR

[android-developers] How to catch the picture and sound

2010-09-27 Thread Jerry Wang
All I want is that android phone catch sound and pictures,and I need get the sound and pictures data. I'm a rookie.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

Re: [android-developers] Re: horizontal scrolling in GridView control

2010-08-04 Thread Jerry Fan
but gallery does center lock automatically. Do you know a way make items shown from left to right and not moving to center upon selected? On Fri, Jul 16, 2010 at 6:32 PM, Namrata puranik.namr...@gmail.com wrote: I had the same issue, I am using gallery instead of grid for this. On Jul 16,

[android-developers] How to store a drawable in database?

2010-08-01 Thread Jerry Fan
Hi folks, is there anyway that I can store drawables into database? -- 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] Re: Socket in AsyncTask - application crashesso the UI won't be blocked

2010-07-21 Thread Jerry Fan
You can register a handler in your code and send message to update your UI component in Handler. I used this way to solve a similar problem like urs before. For exapmpel if (socket.isConnected()) { OutputStreamOut = new ObjectOutputStream(socket.

Re: [android-developers] How to see database files of my phone?

2010-07-21 Thread Jerry Fan
You need to root it first and then use adb to connect to your phone. App dbs are normally sotred at /data/data/(name of the app)/databases/(name of the db).db Just use sqlite3 name of the db).db to view it On Wed, Jul 21, 2010 at 7:44 PM, Nency Robert avayam...@gmail.com wrote: HI, I want

Re: [android-developers] can not see app in Market

2010-06-13 Thread Jerry Fan
If u are using milestone and if u just upgraded APAC update, then it is normal. It takes time to view copy protected apps. On Sun, Jun 13, 2010 at 7:08 AM, Andrei gml...@gmail.com wrote: I have 3 android phones with different Os version. I can see all my apps, but one disappeared for more

[android-developers] Re: Published app not showing up on HTC Evo or Droid Incredible

2010-06-07 Thread Jerry Brady
application on devices can be modified by each carrier which can lead to such issues. I'm not sure... Cheers, Jerry On Jun 7, 2:02 am, Alberto afonsec...@gmail.com wrote: No, neither are running Froyo. The Evo I just picked up on Friday when it came out and haven't messed with the OS. Reading

Re: [android-developers] Re: ListView/Adapter IllegalStateException

2010-04-07 Thread Jerry Fan
I have a fix for this. Just set the visibility of ur ListView to Gone during update and back to visible after update. By doing so, u can avoid the inconsistency of ur adapter and listView item count. On Wed, Mar 31, 2010 at 4:35 PM, ionel ionelt2...@gmail.com wrote: I am calling

Re: [android-developers] IllegalStateException after ListView's adapter has changed

2010-04-07 Thread Jerry Fan
I have a fix for this. Just set the visibility of ur ListView to Gone during update and back to visible after update. By doing so, u can avoid the inconsistency of ur adapter and listView item count. On Mon, Feb 22, 2010 at 3:31 PM, Jayesh Salvi jayeshsa...@gmail.com wrote: Hi, This is

Re: [android-developers] Re: Device Seeding Program for Top Android Market Developers

2010-03-02 Thread Jerry Fan
Is it one phone per developer account ? We have multiple apps qualified the standard published by 2 developers sharing the same account. On Wed, Mar 3, 2010 at 1:49 PM, polyclefsoftware dja...@gmail.com wrote: Yeah, like some others here it didn't even cross my mind that this was some sort of

[android-developers] Re: 2.0 AccountManager - Implementing a new account type with Google, Facebook and Exchange

2009-12-02 Thread Jerry Brady
to look into this any further at the moment as I'm currently looking into the *next* issue which is the way in which the contacts application handles contacts from account sources other than the built-in Google and Exchange sources... Cheers, Jerry On Dec 1, 8:02 pm, Dan Dumont ddum...@gmail.com

[android-developers] Re: 2.0 AccountManager - Implementing a new account type with Google, Facebook and Exchange

2009-11-30 Thread Jerry Brady
()); } } On Nov 23, 8:46 pm, Dan Dumont ddum...@gmail.com wrote: Nice, thanks for doing that!    I'll star it, I hope we get a response soon. On Mon, Nov 23, 2009 at 5:32 PM, Jerry Brady jerry.br...@gmail.com wrote: Just filed a case for this: http://code.google.com/p/android/issues/detail?id

[android-developers] Re: 2.0 AccountManager - Implementing a new account type with Google, Facebook and Exchange

2009-11-23 Thread Jerry Brady
with an exception. Anyone else seen this or find a way to avoid this ? -g On Nov 21, 9:04 am, Jerry Brady jerry.br...@gmail.com wrote: Dan, Now I see what you are doing in your code and found the reference to AddAccountExplicitly().   I want to skip returning an intent to fire

[android-developers] Re: 2.0 AccountManager - Implementing a new account type with Google, Facebook and Exchange

2009-11-23 Thread Jerry Brady
(SystemServer.java:428) I'm looking at the source now to see if I can figure out what's going on. If necessary, I'll file a case with the project if I find a bug in the Android source. Cheers, Jerry On Nov 23, 8:18 am, Jerry Brady jerry.br...@gmail.com wrote: I'm going to be trying it on a Droid

[android-developers] Re: 2.0 AccountManager - Implementing a new account type with Google, Facebook and Exchange

2009-11-23 Thread Jerry Brady
Just filed a case for this: http://code.google.com/p/android/issues/detail?id=5009 On Nov 23, 1:47 pm, Jerry Brady jerry.br...@gmail.com wrote: Dan, My code and yours both work on the Droid, but there are some nasty side-effects.  After adding an account with your application (or mine

[android-developers] Re: App Not showing up on Verizon DROID Phones

2009-11-23 Thread Jerry
Here are two more apps to add to your list. I have the Eris and can't find DroidESPN and Camera Zoom FX. I have tried both the search and QR scan and neither show up. Very, very frustrating. -- You received this message because you are subscribed to the Google Groups Android Developers group.

[android-developers] Re: 2.0 AccountManager - Implementing a new account type with Google, Facebook and Exchange

2009-11-21 Thread Jerry Brady
, I want to understand this part of the system. So if your AbstractAccountAuthenticator isn't being invoked, how can you be calling addAccountExplicitly from within that class? Cheers, Jerry On Nov 20, 2:16 am, sukumar bhashyam bhashyam.suku...@gmail.com wrote: AddAccountExplicitly() would need

[android-developers] Re: 2.0 AccountManager - Implementing a new account type with Google, Facebook and Exchange

2009-11-21 Thread Jerry Brady
Dan, I didn't see this call in your current Google code project. Is your use of AddAccountExplicitly() in there? Cheers, Jerry On Nov 20, 7:53 am, Dan Dumont ddum...@gmail.com wrote: Yes.   But I make the AddAccountExplicitly call in my Authenticator.    You use the AccountManager to create

[android-developers] Re: 2.0 AccountManager - Implementing a new account type with Google, Facebook and Exchange

2009-11-21 Thread Jerry Brady
method whereas your code returns an intent that fires your authentication activity. The main issue for me so far is that I don't see that my AbstractAccountAuthenticator is ever being instantiated. Cheers, Jerry On Nov 20, 7:53 am, Dan Dumont ddum...@gmail.com wrote: Yes.   But I make

[android-developers] Re: 2.0 AccountManager - Implementing a new account type with Google, Facebook and Exchange

2009-11-19 Thread Jerry Brady
about the UID not being correct. Cheers, Jerry On Nov 13, 11:54 pm, Dan Dumont ddum...@gmail.com wrote: For anyone still interested.    I've made a bit of progress.   The google project below now creates and lists accounts of the type for the project! On Fri, Nov 13, 2009 at 9:39 PM, Dan

[android-developers] Re: com.google Authenticator for the new android.accounts.AccountManager API.

2009-11-13 Thread Jerry Brady
something working before I have to leave town. Cheers, Jerry -- 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

[android-developers] 2.0 AccountManager - Implementing a new account type with Google, Facebook and Exchange

2009-11-13 Thread Jerry Brady
insight or help anyone can offer. Cheers, Jerry -- 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

[android-developers] how do real-time monitor the state of SD card

2009-09-09 Thread jerry
I want to know the state of SD card is dynamic mounted or not mounted? it's very kind of you if you can give me a demo(for example, use api registerReceiver、BroadcastReceiver、onReceive and so on). --~--~-~--~~~---~--~~ You received this message because you are

[android-developers] Re: how do real-time monitor the state of SD card

2009-09-09 Thread jerry
(TAG, other status: + status ); } can you give me a demo,and you can success to mount the state of SD card On Sep 10, 1:07 am, Mark Murphy mmur...@commonsware.com wrote: jerry wrote: I want to know the state of SD card is dynamic mounted or not mounted? it's very kind of you if you

[android-developers] Re: how do real-time monitor the state of SD card

2009-09-09 Thread jerry
(TAG, other status: + status ); } can you give me a demo,and you can success to mount the state of SD card On Sep 10, 1:07 am, Mark Murphy mmur...@commonsware.com wrote: jerry wrote: I want to know the state of SD card is dynamic mounted or not mounted? it's very kind of you if you

[android-developers] Lock screen feature does not work

2009-07-14 Thread Jerry Wang
Hi there, I have ever saw the similar discussion in this group, but nobody answer. And I am very confusing about this feature. Because most of developers do not seem to meet this problem. The problem is when I press ENDCALL button, it does not going into Screen Lock view. And I have download

[android-developers] Re: Lock screen feature does not work

2009-07-14 Thread Jerry Wang
Sorry, I don't see any android-porting Group in the Application developer mailing lists. Could you kindly tell me where to look for. And I don't know what is happened. I just built those souce code into PC emulator. And run them on the PC. Why this feature does not work, but it works on the

[android-developers] Uri's format problem

2009-06-08 Thread jerry shen
As we know,the uri's string usually begin with content://,followed with authorities's name,like content://com.google.provider.NotePad/Notes But if i want create a activity to display a web,I usually code as follows: Uri uri = Uri.parse(http://google.com;); Intent it = new

[android-developers] Re: what is the picture format for Picture.WriteToStream?

2009-06-04 Thread Jerry Fan
known to the Picture class. But, i could be wrong... :) On Jun 4, 1:23 am, Jerry Fan jerryfan1...@gmail.com wrote: bump On Thu, Jun 4, 2009 at 10:09 AM, jerryfan2000 jerryfan1...@gmail.com wrote: Hi, What format of picture will I get by using Picture.WriteToStream?- Hide

[android-developers] Re: how to convert Picture object to Bitmap object?

2009-06-04 Thread Jerry Fan
Hi Sujay, Did you mean the bitmap assigned to Canvas construction is actually used for combing all kind of text, line, and picture drawing action into one piece of bitmap object? I'll try it and show you the code tomorrow. Thanks for your advice. On Thu, Jun 4, 2009 at 5:26 PM, Sujay Krishna

[android-developers] Re: what is the picture format for Picture.WriteToStream?

2009-06-03 Thread Jerry Fan
bump On Thu, Jun 4, 2009 at 10:09 AM, jerryfan2000 jerryfan1...@gmail.comwrote: Hi, What format of picture will I get by using Picture.WriteToStream? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: webView: How to click a web link and display in my WebView app

2009-05-13 Thread Jerry Fan
I got the answer by myself. If anyone is also interested to know how to do it, please go to below URL for a tutorial. http://developer.android.com/guide/tutorials/views/hello-webview.html On Thu, May 14, 2009 at 8:01 AM, jerryfan2000 jerryfan1...@gmail.comwrote: Hi, I am trying to add a

[android-developers] progress dialog did not hide. can anybody help out of there?

2009-05-03 Thread Jerry
I have developed a application with two activities, activity1 and activity2 ,and one local service, service1 . activity1 is the main activity. activity2 has a button. when button is pressed. show a progress dialog. and local service start doing some stuff. when it's done. send msg to activity2

[android-developers] Re: [android-developers]JNI run time error even I use same code and lib as Android source code.

2009-02-24 Thread Jerry Yang
Hi, all I checked the logcat, I find it cannot find the jni_Onload, Thanks for your information, I find I forget the function jni_Onload method, it is a new requirement after jni)1.2 Now my hello world working. Thanks With best wishes Jerry On Mon, Feb 23, 2009 at 11:38 PM, Jerry Yang 1999bige

[android-developers] [android-developers]JNI run time error even I use same code and lib as Android source code.

2009-02-23 Thread Jerry Yang
help! Thanks with best wishes Jerry --~--~-~--~~~---~--~~ 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] Re: [android-developers]JNI run time error even I use same code and lib as Android source code.

2009-02-23 Thread Jerry Yang
Hi, Marco I am really new in android develop ment, so where should I check the system log? Thanks with best wishes Jerry On Tue, Feb 24, 2009 at 1:36 AM, Marco Nelissen marc...@android.com wrote: On Sun, Feb 22, 2009 at 10:23 PM, Jerry Yang 1999bige...@gmail.com wrote: (...) 3. push

[android-developers] Re: [android-developers]JNI run time error even I use same code and lib as Android source code.

2009-02-23 Thread Jerry Yang
: com.android.vending/.PackageMonitorReceiver$UpdateCheckinDatabaseService D/dalvikvm( 90): GC freed 2431 objects / 127176 bytes in 276ms D/dalvikvm( 1223): GC freed 2076 objects / 140976 bytes in 128ms With best wishes Jerry On Tue, Feb 24, 2009 at 1:36 AM, Marco Nelissen marc...@android.com

[android-developers] Re: RTSP Streaming on g1 phone

2009-02-04 Thread Jerry Yang
uses QDSP to decode MPEG4 video and H.264 video. Am I right? Best regards, Jeff. On 2월4일, 오후2시40분, Jerry Yang jer...@intertrust.com wrote: Hi, Which player are you using? Or just calling the android sdk to play the rtsp stream? Thanks With best wishes Jerry -Original Message- From

[android-developers] Re: RTSP Streaming on g1 phone

2009-02-04 Thread Jerry Yang
No, idea, because I have no detail information about the detail imply of media player in this platform. With best wishes Jerry -Original Message- From: android-developers@googlegroups.com [mailto:android-develop...@googlegroups.com] On Behalf Of Jeff Oh Sent: Wednesday, February 04

[android-developers] Re: RTSP Streaming on g1 phone

2009-02-04 Thread Jerry Yang
If no security or commercial issues, Can you send me your code for rtsp so that I try to analysis for you? Thanks Jerry -Original Message- From: android-developers@googlegroups.com [mailto:android-develop...@googlegroups.com] On Behalf Of Jerry Yang Sent: Wednesday, February 04, 2009 4

[android-developers] Re: About media player

2009-02-04 Thread Jerry Yang
to decrypto the stream/file, transfer the clear stream/file to player, but I also noticed the android native code support is not added, how to transfer the clear stream to decoder is also problem here. With best wishes Jerry -Original Message- From: android-developers@googlegroups.com

[android-developers] Re: RTSP Streaming on g1 phone

2009-02-04 Thread Jerry Yang
Can you try to play a same video file from local SD card? -Original Message- From: android-developers@googlegroups.com [mailto:android-develop...@googlegroups.com] On Behalf Of Jeff Oh Sent: Thursday, February 05, 2009 9:54 AM To: Android Developers Subject: [android-developers] Re: RTSP

[android-developers] Re: About media player

2009-02-04 Thread Jerry Yang
confliction issue. May it possible? Thanks With best wishes Jerry -Original Message- From: android-developers@googlegroups.com [mailto:android-develop...@googlegroups.com] On Behalf Of Dave Sparks Sent: Thursday, February 05, 2009 3:29 PM To: Android Developers Subject: [android

[android-developers] Re: About media player

2009-02-03 Thread Jerry Yang
I wanna to add a plug-in with certain de-crypto. That means I receive encrypted meida, and de-encrypt it on run time with certain key. My propose is to setup a demo system for research and study. With best wishes Jerry -Original Message- From: android-developers@googlegroups.com

[android-developers] [android-developers]Using JNI to call C lib on android platform

2009-02-03 Thread Jerry Yang
-compile the lib with arm based detain GCC and use the interface to Android app. Any one has any document or example about this? Appreciate for your help! With best wishes Jerry Yang --~--~-~--~~~---~--~~ You received this message because you are subscribed

[android-developers] Re: How to acquire device name with code

2009-02-03 Thread Jerry Yang
I believe this link may helpful for u. http://code.google.com/android/reference/android/os/Build.html With best wishes Jerry -Original Message- From: android-developers@googlegroups.com [mailto:android-develop...@googlegroups.com] On Behalf Of Stanley.lei Sent: Wednesday, February 04

[android-developers] Re: [android-developers]Using JNI to call C lib on android platform

2009-02-03 Thread Jerry Yang
Hi, Dianne I find an api with the name java.lang.System.loadLibrary http://code.google.com/android/reference/java/lang/System.html#loadLibr ary(java.lang.String) Is this api not supported in Android SDK now? Thanks With best wishes Jerry From: android-developers@googlegroups.com

[android-developers] Re: [android-developers]Using JNI to call C lib on android platform

2009-02-03 Thread Jerry Yang
based GCC), is that right? Maybe my conception is not correct, but what is the exact meaning of Native code support? is it means the JNI or anything else? Thanks With best wishes Jerry From: android-developers@googlegroups.com [mailto:android-develop...@googlegroups.com] On Behalf

[android-developers] Re: RTSP Streaming on g1 phone

2009-02-03 Thread Jerry Yang
Hi, Which player are you using? Or just calling the android sdk to play the rtsp stream? Thanks With best wishes Jerry -Original Message- From: android-developers@googlegroups.com [mailto:android-develop...@googlegroups.com] On Behalf Of Jeff Oh Sent: Tuesday, February 03, 2009 7:59 PM

[android-developers] Re: cupcake/development/tools/eclipse/scripts/build_server.sh failed on Mac OS -- HELP

2009-02-03 Thread Jerry Yang
I use a unbentu VM to run the Darwin streaming server, it seems working well. On windows mobile platform, I also tried to optimize the rtsp on media player, it seems cases are quit complex. I suggest you to use the VLC as reference media player. With best wishes Jerry -Original Message

[android-developers] Why I cannot see my mail to the group?

2009-02-02 Thread Jerry Yang
Hi, all I have send some times, but still cannot see my mail in the group. Can anyone of you see it? Thanks With best wishes Jerry Yang Client System Engineer Intertrust. --~--~-~--~~~---~--~~ You received this message because you are subscribed

[android-developers] Re: Audio Volume

2009-02-02 Thread Jerry Yang
Yes, I agree. If you want to control the volumn only in the app. You can change back the volumn once the focus is not in ur app or close the app. That is the only working way I can imagine although it is a little bit boring. With best wishes Jerry From: android-developers@googlegroups.com

[android-developers] Bluetooth in Android How to enable bccmd

2008-12-15 Thread Jerry Zhang
/bluez. How can I reconfigure it and add enable-bccmd options. Sorry for my pool english. Thanks very much BR Jerry --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group

[android-developers] How to get android fs from sdk1.0

2008-12-02 Thread Jerry Zhang
very much! Jerry --~--~-~--~~~---~--~~ 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 [EMAIL

[android-developers] Re: Land Navigation Application development

2008-11-10 Thread Jerry Elizondo
Hello Sam: Post your request in the beginners' forum. A couple of weeks ago someone at that forum was asking for ideas for a project. Cheers, Jerry On Mon, Nov 10, 2008 at 9:36 AM, Sam M [EMAIL PROTECTED] wrote: I'm sure the paying customers do. It's just a suggestion, and I didn't know

[android-developers] Can I build Android source code in RedHat Enterprise Linux Server?

2008-11-03 Thread Jerry
Can I build Android source code in RedHat Enterprise Linux Server? Does anyone success the build on Redhat Linux? Thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this