Re: [android-developers] Re: [Android-developers]:need help in creating bluetooth file transfer app. urgent

2012-10-25 Thread akash roy
thanx bob i did that already...here is my sample code : sender : File myFile = new File(message.toURI()); nosofpackets=Math.ceil(( (int)myFile.length())/4096); //mChatService.writeda( message.getName(), myFile.length()); for(double i=0; inosofpackets; i++) {

Re: [android-developers] Re: [Android-developers]:need help in creating bluetooth file transfer app. urgent

2012-10-18 Thread bob
Change this: InputStream instream = socket.getInputStream(); to this: *OutputStream outstream = socket.getOutputStream();* Change this: instream.read( buffer); to this: *outstream.write( buffer);* On Thursday, October 11, 2012 12:26:43 AM UTC-5, akash roy wrote: i want send a file so

[android-developers] Re: [Android-developers]:need help in creating bluetooth file transfer app. urgent

2012-10-10 Thread bob
*Creating a Bluetooth client socket* **private void connectToServerSocket( BluetoothDevice device, UUID uuid) { try{ BluetoothSocket clientSocket = device.createRfcommSocketToServiceRecord( uuid); // Block until server connection accepted. clientSocket.connect(); // Start listening

Re: [android-developers] Re: [Android-developers]:need help in creating bluetooth file transfer app. urgent

2012-10-10 Thread akash roy
i want send a file so what changes i have to make.? -- 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] Re: [Android-developers]:need help in creating bluetooth file transfer app. urgent

2012-10-09 Thread akash roy
and i m very new on this android developing. -- 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] Re: [android developers] how to use a viewpager in a fragment?

2012-04-24 Thread Nadeem Hasan
I use Fragments+ViewPager+ViewPageIndicator in my app. Hope you would find it helpful: https://github.com/nhasan/Airports/blob/master/src/com/nadmm/airports/wx/WxDetailActivity.java https://github.com/nhasan/Airports/blob/master/src/com/nadmm/airports/utils/TabsAdapter.java

Re: [android-developers] Re: [Android - developers] Exponential Smoothing on Latitude and Langitude

2012-04-01 Thread agung wiguna johan
Hi David, thanks for your respond I already solved the problem here The problem's my mistake in a code at the smoothing formula, i use the wrong value Anyway, anybody here know about high pass filter? Thanks On Mon, Mar 26, 2012 at 5:51 PM, David Griffiths davi...@cordic.com wrote: Sorry, my

Re: [android-developers] Re: [Android - developers] Exponential Smoothing on Latitude and Langitude

2012-03-26 Thread David Griffiths
As well as multiplying twice by 1.0E6 (instead of multiplying and then dividing), another error is ​smoothingCoor[i] = smoothingCoor [i] +alpha * (coor[i] - smoothingCoor[i]); This should be smoothingCoor[i] = (smoothingCoor [i] * (1.0 - alpha)) + alpha * (coor[i] - smoothingCoor[i]);

Re: [android-developers] Re: [Android - developers] Exponential Smoothing on Latitude and Langitude

2012-03-26 Thread David Griffiths
Sorry, my mistake. The line smoothingCoor[i] = smoothingCoor [i] +alpha * (coor[i] - smoothingCoor[i]); is correct as it stands. However my comment on your nearing smoothing not taking into account the 359 degrees problem is correct. Two other problems with the code you have posted: I

Re: [android-developers] Re: [Android - developers] Exponential Smoothing on Latitude and Langitude

2012-03-25 Thread agung wiguna johan
Hi jinja, thanks for the help I already tried with the fixed point but it still get me the wrong value Are there something filtering that we can use to filter latitude and longitude ? (except kalman filter) Sory for my bad english On Fri, Mar 16, 2012 at 12:17 AM, Jinja neiljmar...@gmail.com

Re: [android-developers] Re: [Android - developers] Exponential Smoothing on Latitude and Langitude

2012-03-15 Thread agung wiguna johan
Hi, thanks for all the input Right now i still don't have any solution for get the best latitude and longitude I want to use kalman filter at the first, but after read some paper and articles kalman filter is need the value from accelorometer Unfortunately my requirement for this application is

Re: [android-developers] Re: [Android - developers] Exponential Smoothing on Latitude and Langitude

2012-03-15 Thread Jinja
Hi Concave, Okay, I see that you need to keep the values as x1E6 now. However, you are still multiplying by 1E6 twice, you only need to do it once. Remove the *1E6 from the following lines, so.. smoothLat = (int) (smoothingCoor [0] * 1E6); smoothLongi = (int) (smoothingCoor [1] * 1E6);

Re: [android-developers] Re: [Android - developers] Exponential Smoothing on Latitude and Langitude

2012-03-13 Thread Yaron Reinharts
Hi, There is a section with the title Maintaining a current best estimate in the following link, it contains an implementation of a method called isBetterLocation. http://developer.android.com/guide/topics/location/obtaining-user-location.html Hope this helps /Yaron -- Yaron Reinharts

[android-developers] Re: [Android - developers] Exponential Smoothing on Latitude and Langitude

2012-03-12 Thread Jinja
Hello, I've never dealt with GPS data before, but having a quick look at your code it looks like you have a mismatch in converting your data to and from integers and doubles. I notice you multiply by 1E6 when extracting the lat/long, presumably this is to maintain some accuracy during the

Re: [android-developers] Re: [Android - developers] Saving Latitude and Longitude value

2012-03-10 Thread agung wiguna johan
Hi sory for the late replay, and sory for the lacked information on my question. I don't know how to provide the error code, because when i debug the application, i don't get any error code. But i already solved the problem now. Thanks for your help,and correction On Fri, Mar 9, 2012 at 4:18 AM,

[android-developers] Re: [Android - developers] Saving Latitude and Longitude value

2012-03-08 Thread agung wiguna johan
Update : I found the solution,but still getting error. Use 2 location variable to get the previous position before changed : public void onLocationChanged(Location newLocation) { prevLocation = currentPosition; currentPosition = new Location (newLocation); int lat1 = (int)

Re: [android-developers] Re: [Android - developers] Saving Latitude and Longitude value

2012-03-08 Thread TreKing
On Wed, Mar 7, 2012 at 9:06 PM, agung wiguna johan agung.wiguna.jo...@gmail.com wrote: But when i running the program, it's take long to get the coordinates, That's GPS for you. and get force close at the end. Debug your app. How do you expect anyone here to help you with non-existent

[android-developers] Re: android-developers How can i set tab background as a picture?

2011-05-08 Thread a a
There have also some document about the method, --- public TabHost.TabSpec setIndicator (CharSequence label) Since: API Level 1 Specify a label as the tab indicator. public TabHost.TabSpec setIndicator (View

[android-developers] Re: android-developers Thread escape group

2011-05-02 Thread joseph bashkar
http://123maza.com/65/rings780/ http://123maza.com/65/rings780/ http://123maza.com/65/rings780/ http://123maza.com/65/rings780/ http://123maza.com/65/rings780/ On Apr 30, 1:54 am, a a harvey.a...@gmail.com wrote: I'm modifying the app Gallery3D on android. Meet an issue about thread.

[android-developers] Re: Android Developers Group in Los Angeles/Ventura Area

2011-02-25 Thread joyseeker
There's an active LA Android group at meetup.com. I haven't been to one of their meetings, but hope to soon. -- 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] Re: Android Developers Group in Los Angeles/Ventura Area

2011-02-24 Thread Corey Latislaw
That's funny, I was just looking around Philadelphia for the same thing. I was expecting to find some sort of national organization (like CocoaHeads for iPhone), but now I'm planning to start something locally as well. Thanks, Corey -- Corey Latislaw Software Engineer http://coreylatislaw.com

[android-developers] Re: Android Developers Group in Los Angeles/Ventura Area

2011-02-22 Thread Stephen Lebed
I'm in the Los Angeles area and willing to meet if anyone wants to form a group. Stephen Lebed Developer On Feb 19, 12:22 pm, Jay jay.suttirutt...@gmail.com wrote: Does anybody have any information on android developers group (something similar to Java Users Group - for developers)  in Los

[android-developers] Re: Android developers in Boston

2010-01-05 Thread Carter
You should attend the next Mobile Monday Boston: http://www.momoboston.com/ It's a free mobile-oriented conference in Boston that happens about once per month on a Monday night. Just keep checking the website for announcements about the next event, probably sometime in January for February. On

Re: [android-developers] Re: Android developers in Boston

2010-01-05 Thread abhinav jaju
On Wed, Jan 6, 2010 at 9:07 AM, Carter ccjerni...@gmail.com wrote: You should attend the next Mobile Monday Boston: http://www.momoboston.com/ It's a free mobile-oriented conference in Boston that happens about once per month on a Monday night. Just keep checking the website for

Re: [android-developers] Re: [Android-developers] Display APIs in Android?

2009-11-05 Thread Latha Shivanna
OoO , i used drawbitmap(int[],) apis to replace my createbitmap() and drawbitmap() methods. Thanks a lot for your replies. I felt really dumb not to hit ctrl+space on eclipse :-| On Wed, Nov 4, 2009 at 6:14 PM, niko20 nikolatesl...@yahoo.com wrote: Hi, OnDraw gets a Canvas object

Re: [android-developers] Re: [Android-developers] Display APIs in Android?

2009-11-04 Thread Latha Shivanna
You can directly draw onto surface bound with canvas passed in in your draw handler. You don't have to always first draw into bitmap then copy from bitmap to surface. can you please give me some sample code for the same? It would be really helpful. Or any references where i can have a look at

[android-developers] Re: [Android-developers] Display APIs in Android?

2009-11-04 Thread niko20
Hi, OnDraw gets a Canvas object passed to it. You basically draw directly to this object (Use Canvas's methods to do the drawing). However, you won't be double buffering then so you may see some flicker. -niko On Nov 4, 5:33 am, Latha Shivanna latha...@gmail.com wrote: You can directly draw

[android-developers] Re: [Android-developers] Display APIs in Android?

2009-11-03 Thread Westermann Fu
You can directly draw onto surface bound with canvas passed in in your draw handler. You don't have to always first draw into bitmap then copy from bitmap to surface. In fact, no matter what strategy you use you have not really drawn onto screen framebuffer directly, the last action is composing

[android-developers] Re: [Android-developers] Display APIs in Android?

2009-11-03 Thread Westermann Fu
You can directly draw onto surface bound with canvas passed in in your draw handler. You don't have to always first draw into bitmap then copy from bitmap to surface. In fact, no matter what strategy you use you have not really drawn onto screen framebuffer directly, the last action is composing

[android-developers] Re: [Android Developers] Make Fade-in and Fade-Out Effect

2009-10-28 Thread Raphael
On Wed, Oct 28, 2009 at 3:19 AM, ArNguyen vunguye...@gmail.com wrote: Hi all! I am beginner on Android game. I want to make Fade-in and fade-out effect to transform scenes (Intro game - play game - win game/ over game, ...). Please tell me how to make  Fade-in and fade-out effect in

[android-developers] Re: android-developers - 25 new messages in 18 topics - digest

2009-09-15 Thread Doko
android-developers group nore...@googlegroups.com wrote: Android Developers http://groups.google.com/group/android-developers?hl=en android-developers@googlegroups.com Today's topics: * textview scrolling help. - 1 messages, 1 author

[android-developers] Re: android-developers - 26 new messages in 16 topics - digest

2009-09-09 Thread Bartolo Illiano
Who use a Titanium Developer for buld android apps ? --~--~-~--~~~---~--~~ 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

[android-developers] Re: [android-developers]

2009-08-26 Thread Dan Sherman
Have you tried following the instructions at the bottom? - Dan On Wed, Aug 26, 2009 at 12:43 PM, Grant, Stephanie (Matrix) stephanie.gr...@ihg.com wrote: I have tried to be removed from this email group 5 times! Please remove me! *Stephanie Grant* Revenue Guest Technology

[android-developers] Re: Android Developers Wanted

2009-08-20 Thread N4Spd
I have an active Q clearance and lots of Android experience. Where are you located? Robert Chou Http://www.rcreations.com Http://hit-mob.com/forums On Aug 19, 6:30 pm, Ashwin anantar...@gmail.com wrote: We are a government Software Contracting company. We currently have an opening for a

[android-developers] Re: Android Developers Wanted

2009-08-20 Thread Fred Grott(shareme)
Is this local or remote? Fred Grott http://mobilebytes.wordpress.com On Aug 19, 8:30 pm, Ashwin anantar...@gmail.com wrote: We are a government Software Contracting company. We currently have an opening for a Google Android Developer. At the time of interview, you will be required to sign a

[android-developers] Re: [android-developers]how to incude include static files(.a) in android jni application?

2009-07-31 Thread David Turner
You need to generate a shared library, not a static one, to be able to use native code with JNI. May I recommend you to download and use the Android NDK to do that? On Fri, Jul 31, 2009 at 10:00 AM, frog bluewater0...@gmail.com wrote: HI,all I am recently developing a application use android

[android-developers] Re: [android-developers]how to incude include static files(.a) in android jni application?

2009-07-31 Thread frog
Thanks David. I have this done by add my static library files to the the android's library path.Thanks for help. BTW. I have no NDK to use,and the static library is from other company. 2009/7/31 David Turner di...@android.com You need to generate a shared library, not a static one, to be able

[android-developers] Re: android-developers - 25 new messages in 16 topics - digest

2009-07-31 Thread Muhammad Ahmad Raza
Hi. Join this link to visit world’s best historical places. Visiting my website you feel that actually you are traveling these places in real. www.love-pak.blogspot.com Ahmad --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[android-developers] Re: android developers challenge 2

2009-07-10 Thread Yusuf T. Mobile
I am not an official nor a judge, but from my reading of the preliminary rules posted so far, leveraging a server does not render your entry ineligible. Yusuf Saib Android ·T· · ·Mobile· stick together The views, opinions and statements in this email are those of the author solely in their

[android-developers] Re: android developers challenge 2

2009-07-10 Thread jonathan
Yusuf, thanks for the reply.would a website designed for gphone/smart phone be eligible? -Jonathan On Jul 10, 9:41 am, Yusuf T. Mobile yusuf.s...@t-mobile.com wrote: I am not an official nor a judge, but from my reading of the preliminary rules posted so far, leveraging a server does not

[android-developers] Re: [android-developers]

2009-06-22 Thread Sujay Krishna Suresh
That means that u r not connected via wi-fi... generally, apps that need a transfer huge amt of data use a wifi-lock they dont get connected if the wifi-connectivity is lost... On Mon, Jun 22, 2009 at 2:52 PM, Joe Petruchi petruchi.dr...@gmail.comwrote: Hi all Uploading pictures to picasa

[android-developers] Re: [android-developers]

2009-06-22 Thread Joe Petruchi
Hi I am trying to use the GPRS network to upload the pictures !!! It is working fine in my friends mobile so i am curious why it is not working in my mobile ? Any idea do we have to some setting in picasa also for the download to happen Regards Joe On Mon, Jun 22, 2009 at 3:06 PM, Sujay

[android-developers] Re: [android-developers]

2009-06-22 Thread Sujay Krishna Suresh
My GPRS provider does not allow large transfers in a single connection... If that's wat ur provider also does, then it wont work... So i could never upload anything frm my G1 I'm still in the search for a workaround so that i could do this overriding my providers restrictions... Hmm...theres

[android-developers] Re: [android-developers]

2009-06-05 Thread Numan Ahmed
on sat, 6/ 6/ 2009 numan numan@gmail.com helllo my friends have a nice day latest summer fashion more fashion shows videos visit us http://www.fashioninfokit.com/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

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

2009-02-27 Thread yichu
Hi Jerry, Could you share how to fix this jni_onload problem? I got the same error but don't know how to solve it. Thanks :) Yichu On Feb 24, 12:45 am, Jerry Yang 1999bige...@gmail.com wrote: Hi, all I checked the logcat, I find it cannot find the jni_Onload, Thanks for your information, I

[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

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

2009-02-23 Thread Marco Nelissen
On Sun, Feb 22, 2009 at 10:23 PM, Jerry Yang 1999bige...@gmail.com wrote: (...) 3. push the .apk to the phone and run from eclips always a run time error like:the application hello.android has stopped unexpectedly, pla try again What does it say in the system log?

[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 the

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

2009-02-23 Thread Mark Murphy
Jerry Yang wrote: I am really new in android develop ment, so where should I check the system log? You can: -- Run adb logcat http://developer.android.com/guide/developing/tools/adb.html#logcat -- Use DDMS http://developer.android.com/guide/developing/tools/ddms.html -- Use Eclipse --

[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 and all Here is the log: D/AndroidRuntime( 1221): D/AndroidRuntime( 1221): AndroidRuntime START D/AndroidRuntime( 1221): CheckJNI is OFF I/ActivityThread( 1223): Publishing provider com.android.vending.SuggestionsProv ider: com.android.vending.SuggestionsProvider D/AndroidRuntime(

[android-developers] Re: Android Developers Needed in Singapore

2009-02-19 Thread Anh.Takaji
Are you looking for developer share the same hobby, or employee :) ? On Feb 8, 1:35 am, Zi Yong Chua chu...@gmail.com wrote: Dear fellow developers, I am working on a mobile application that relates to media content delivery that I am building on the Android platform. Now I am trying to

[android-developers] Re: Android Developers Needed in Singapore

2009-02-19 Thread Android_Learner
Hi Zi Yong, I am working as a Senior Technical Architect in Mobile Application domain and having a strong expertis and skilled team of Android. Worked on the application suite like, Video, Music,Inbox,contacts and Maps on Android. But we are india based, can take on this project. Looking forward

[android-developers] Re: android-developers - 84 new messages in 56 topics - abridged

2009-02-10 Thread fadden
On Feb 9, 11:26 pm, rajesh bhasin rajesh...@gmail.com wrote: I tried to use a instance of one class ( from the utility package ) in the code of a class in another package (main package). I tried statements like import utility.* and even changed the code by making methods static (so tht i did

[android-developers] Re: Android Developers in Atlanta, GA

2009-02-07 Thread Alton
Hi there, I'm in Marietta and would be interested. Alton On Jan 30, 9:10 am, BarbieDahl sr9...@gmail.com wrote: Are there any developers inAtlanta, GA that would like to meet and discuss android app ideas as well as learn new and advanced android topics? I would like to network with some

[android-developers] Re: Android Developers in Atlanta, GA

2009-02-07 Thread BarbieDahl
Hey Alton, I saw that you already joined Droidlanta, great to have you. We are planning a meetup to discuss various things to get this group going. We would love to have you attend. We tentatively have the 4th Tuesday of the month setup to meet. Check the meetup post in Droidlanta for more

[android-developers] Re: Android Developers in Atlanta, GA

2009-02-07 Thread BarbieDahl
Hello mission4u, We would love to checkout your app. You can join our group if you want, we want to do some meetups since the group so far is made up of Atlanta area folks but we will post some stuff to our group website as well. The group is called Droidlanta, you can join the group and check

[android-developers] Re: Android Developers in Atlanta, GA

2009-02-05 Thread mission4u
I am in Charlotte, NC and have designed app named iTubeStatus... it wont be available in US Android market but you can search its description online. Let me know if you guys wanna see the app. I can change a setting for a while I can join your team too...Thanks On Jan 30, 9:10 am, BarbieDahl

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

2009-02-03 Thread Dianne Hackborn
Sorry, native code is not currently supported in the SDK. On Tue, Feb 3, 2009 at 6:27 PM, Jerry Yang jer...@intertrust.com wrote: Hi, all Does anyone have any information about using the external C written lib? I have a C lib(no user interface, can be compiled like dll or lib) that need

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

2009-02-03 Thread Jerry Yang
[mailto:android-develop...@googlegroups.com] On Behalf Of Dianne Hackborn Sent: Wednesday, February 04, 2009 11:25 AM To: android-developers@googlegroups.com Subject: [android-developers] Re: [android-developers]Using JNI to call C lib on android platform Sorry, native code is not currently supported

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

2009-02-03 Thread Dianne Hackborn
04, 2009 11:25 AM *To:* android-developers@googlegroups.com *Subject:* [android-developers] Re: [android-developers]Using JNI to call C lib on android platform Sorry, native code is not currently supported in the SDK. On Tue, Feb 3, 2009 at 6:27 PM, Jerry Yang jer...@intertrust.com wrote

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

2009-02-03 Thread Jerry Yang
Of Dianne Hackborn Sent: Wednesday, February 04, 2009 12:09 PM To: android-developers@googlegroups.com Subject: [android-developers] Re: [android-developers]Using JNI to call C lib on android platform That API is part of the SDK, but native code is not a part of the SDK, so it probably won't do you

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

2009-02-03 Thread Dianne Hackborn
...@googlegroups.com] *On Behalf Of *Dianne Hackborn *Sent:* Wednesday, February 04, 2009 12:09 PM *To:* android-developers@googlegroups.com *Subject:* [android-developers] Re: [android-developers]Using JNI to call C lib on android platform That API is part of the SDK, but native code

[android-developers] Re: Android Developers in Atlanta, GA

2009-02-02 Thread BarbieDahl
Great, do you know any other people in this area interested in Android?? If you are on google chat, send me an email so I can add you to my contacts. Thanks, Barbara On Jan 30, 4:22 pm, Simon simon.drab...@gmail.com wrote: I'd be interested in possibly getting together. On Jan 30, 9:10 am,

[android-developers] Re: Android Developers in Atlanta, GA

2009-02-02 Thread shaun
I am in Marietta. I would like to participate, especially if some game developers start joining...or at least someone with valuable experience with OpenGL. On Feb 2, 4:30 pm, BarbieDahl sr9...@gmail.com wrote: Great, do you know any other people in this area interested in Android?? If you are

[android-developers] Re: Android Developers in Atlanta, GA

2009-02-02 Thread BarbieDahl
Hi Shaun, Your in luck, Simon is beginning to look into OpenGL. I'm doing mostly location based awareness apps but we Simon and I were thinking of setting up a google group for atlanta area folks. If you know other people who are interested, reply to this post. Once I get the google group

[android-developers] Re: Android Developers in Atlanta, GA

2009-01-30 Thread Simon
I'd be interested in possibly getting together. On Jan 30, 9:10 am, BarbieDahl sr9...@gmail.com wrote: Are there any developers in Atlanta, GA that would like to meet and discuss android app ideas as well as learn new and advanced android topics? I would like to network with some other

[android-developers] Re: Android Developers Available For Hire?

2009-01-27 Thread Peli
Hi, Depending on what kind of projects you envision, we could probably help you: For open source projects - www.openintents.org For closed source projects - www.openintents.biz Peli On Jan 27, 2:03 pm, phandroid robjackso...@gmail.com wrote: My name is Rob Jackson and I run phandroid.com and

[android-developers] Re: Android Developers Available For Hire?

2009-01-27 Thread shimo...@gmail.com
Hi, Would be delighted to discuss working on this. http://www.shsh.com Shimon On Jan 27, 3:03 pm, phandroid robjackso...@gmail.com wrote: My name is Rob Jackson and I run phandroid.com and AndroidForums.com. I've got a few simple applications I'm hoping to have developed that I want to

[android-developers] Re: Android Developers' Unlocked G1 Phone - Pictures and description of what is in the box

2008-12-13 Thread Disconnect
JF wrote an article up with pics (and he added the kb pics, since it is somewhat unique) at www.gotontheinter.net/node/12 - it is a not-quite-side-by-side comparison of the G1 he had with the ADP1 he has :) On Sat, Dec 13, 2008 at 9:59 AM, Edmon ebeg...@gmail.com wrote: I just wanted to share

[android-developers] Re: Android developers UNITE!

2008-10-18 Thread Al Sutton
Reply posted on android-discuss. Hopefully we can leave you guys to read more useful emails :). Al. david wrote: Since Google groups won't let me edit my original post, nor let me post this reply to your comments with my AdroitAndroid email address, please be aware that I am the original

[android-developers] Re: Android developers UNITE!

2008-10-18 Thread david
Bill, Yes, much more information is available for those that are interested. I didn't want to dump too much info here... just post a bit of info to let those that might want to participate know what's going on and to contact me for the details. The answers to the questions you asked are

[android-developers] Re: Android developers UNITE!

2008-10-17 Thread Al Sutton
For anyone tempted by this please be aware that taking money up front with a promise of work and potential royalties is a scam that has been operating in the world of fashion models for a while. I know there are many on this list who wouldn't entertain this concept, but there may be the few

[android-developers] Re: Android developers UNITE!

2008-10-17 Thread david
Since Google groups won't let me edit my original post, nor let me post this reply to your comments with my AdroitAndroid email address, please be aware that I am the original poster. I find the lack of trust sad and offensive... but understandable. The application fee was meant to provide the

[android-developers] Re: Android developers UNITE!

2008-10-17 Thread Bill Zimmerly
David, it might help your image if you filled out your profile information and perhaps posted your estimated costs to run the business for six months. Suppose you have 10 founders, what is the buy-in for each of them? (Furthermore, how do these founders differ from the other founders you wrote

[android-developers] Re: [android-developers]

2008-07-22 Thread Mark Murphy
please help I can't understand the difference between interface, class and enum in this platform. Enum http://en.wikibooks.org/wiki/Java_Programming/Keywords/class http://en.wikibooks.org/wiki/Java_Programming/Keywords/enum

[android-developers] Re: [android-developers]Does android give multiple language support

2008-05-14 Thread Megha Joshi
Hi Radhika, The multiple language support feature is not a part of the current SDK release. Please check the note about internationalization in the link below: http://code.google.com/android/devel/resources-i18n.html#i18n Thanks, Megha On Tue, May 13, 2008 at 11:35 PM, [EMAIL PROTECTED] wrote:

[android-developers] Re: Android Developers Challenge!

2008-04-02 Thread [EMAIL PROTECTED]
Hi, Thanks for putting this forward. One question our team is having, based on limited resources, is: In what context are the judges going to view the products? Much of our application does not require GPS, or a 320 x 480 screen, specifically with the idea of keeping handset cost low. But we are

[android-developers] Re: Android Developers Challenge!

2008-04-01 Thread acopernicus
Example: Humanitarian aid workers could use an Android-enabled to: 1) Better coordinate track the delivery of food/medicine. 2) Document humanitarian crises genocide like Darfur 3) I.e. the people living on $2/day could indirectly benefit from other's having Android phones. Anthony

[android-developers] Re: Android Developers Challenge!

2008-04-01 Thread YA
Example: Humanitarian aid workers could use an Android-enabled to: 1) Better coordinate track the delivery of food/medicine. 2) Document humanitarian crises genocide like Darfur 1) Any GPS enabled logistical software or simply web service loaded in browser 2) Camera + video. What is so

[android-developers] Re: Android Developers Challenge!

2008-04-01 Thread Harsh Jain
http://code.google.com/android/adc_faq.html#kinds I have to say, I never understood this particular phrase of the competition suggestions: Those poor people will never ever see an Android phone. How could it help them? On the contrary, I find this That's so much away from reality. I have

[android-developers] Re: Android Developers Challenge!

2008-03-31 Thread Dan U.
We wanted to bring your attention... If you don't mind me asking, who are we? Are you a member of some group? Is there a reason we should be focusing on this particular type of application? I don't mean to be pessimistic, but I think suggesting people get started on an app with only 2 weeks