Re: [android-developers] Android Compass help

2012-06-27 Thread sajjan androiddeveloper
You have compass application already in android sample code.Have a look on that On Sun, Jun 24, 2012 at 2:52 AM, axesh ajmera ajmeraax...@gmail.com wrote: Hi Guys, I need your help on developing an android compass application.Here is the source code...I want to know if i am using

Re: [android-developers] button

2012-06-21 Thread sajjan androiddeveloper
Use selector that will be easy for you On Thu, Jun 21, 2012 at 3:22 PM, bob b...@coolfone.comze.com wrote: Are you talking about using this? void setOnTouchListener(View.OnTouchListener l) On Wednesday, June 20, 2012 10:34:42 AM UTC-5, Kristopher Micinski wrote: Sure, in the onPressed

Re: [android-developers] Re: About Phone GAP

2011-12-01 Thread sajjan androiddeveloper
Unfortunately ,If you need same code to be working on multiple platforms(iPhone and Blackberry) no other way now.. On Thu, Dec 1, 2011 at 10:30 AM, Mukesh Srivastav mukicha...@gmail.comwrote: JQuery,PhoneGAP,Snecha are all Same Web-Development tools. I suspect, one day, Mobile companies

[android-developers] How to change the normal behaviour of a listview

2010-04-15 Thread androidDeveloper
Hello Android Developers, does anyone know how to imitate the behaviour of the iPhone list used in the cineplexx iPhone app shown on this page: http://itunes.apple.com/de/app/cineplex-kinoprogramm/id361227953?mt=8 I refer to the left image, which shows a list with different locations to choose.

[android-developers] Re: How to change the normal behaviour of a listview

2010-04-15 Thread androidDeveloper
Yes, that would be the way, thanks. Has anyone done someting similar and could share sample code? On 15 Apr., 14:11, tony obrien tobsourcecode...@gmail.com wrote: By extending the LISTVIEW and overriding the GetView() you can do whatever you want. On Apr 15, 5:35 am, androidDeveloper

[android-developers] Experience with different Android devices and apps shown in Android Market

2010-02-23 Thread androidDeveloper
I am interested in your experience with Android apps. Do you have problems with some devices (errors, crashes...), apps that are not shown on some devices or other problems? If you have some of these problems, is it clear to you where the problem comes from? Greetings Android Developer -- You

[android-developers] Can not find my own App in Android Application with G!

2009-11-08 Thread androidDeveloper
Is there a reason why I do not find my own app on Android Market with my G1? The G1 is registered to my Google account, that I used to submit the APP. I too have a Samsung Galaxy, which is registered to another Google account, and with that I found my app! Does anyone know why this is? -- You

[android-developers] Problems updating my app on Android Market and switching to copy protection

2009-11-08 Thread androidDeveloper
I have uploaded an update for my app on Android Market. And at the same time I have enabled the copy protection of the app. When I downloaded my the update, there was an exception and the app crashed. I had to reinstall it. After reinstall it worked fine... Exception was: W/zipro ( 1103):

[android-developers] 3D Primitives in opengl ES (sphere)

2009-09-25 Thread androidDeveloper
Anyone know how to draw a 3D-sphere with OpenGL ES in android? 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] Re: how to use gluUnProject

2009-09-21 Thread androidDeveloper
Have you checked the MatrixGrabber? I tried to use the MatrixGrabber, but I got an class Cast Exception in the MatrixGrabber Row 56: private void getMatrix(GL10 gl, int mode, float[] mat) { MatrixTrackingGL gl2 = (MatrixTrackingGL) gl; ...} Does anyone know how to use it? On 8

[android-developers] OpenGL ES - How to map 2D-X-Y-screen Coordinates to 3D-X-Y-Z Object

2009-09-21 Thread androidDeveloper
Does anyone know how to map 2D-X-Y screen coordinates to 3D-X-Y-Z Object coordinates in a openGL World (Or 3D-X-Y-Z to 2D-X-Y)? What I want is to determine on which 3D-Object a user clicked, when he touches the phone screen (onTouchEvent). Thanks!

[android-developers] Re: how to use gluUnProject

2009-09-21 Thread androidDeveloper
Thanks. I found the error. The Code example is found in the ApiDemos com.example.android.apis.graphics.spritetext SpriteTextActivity. On 21 Sep., 14:56, Streets Of Boston flyingdutc...@gmail.com wrote: --~--~-~--~~~---~--~~ You received this message because you

[android-developers] Re: ADC 2 Submission Site -- Now live

2009-08-26 Thread androidDeveloper
So...will ADC2 apps be used by people outside of ADC2 judging? No, apps will be removed from the device after the judging period is over. If developers want to, they may release their app into the standard Market, but that will be the only version they will need to support. Ok, I

[android-developers] get Projection Matrix from mapView in Overlay method draw

2009-05-28 Thread androidDeveloper
Hello, does anyone know how to get the projection Matrix of the mapView? Usually when drawing an Overlay you have to call projection.toPixels (geoPoint, point) for each GeoPoint you want to draw. I Think it would be faster to put the GeoPoints in a Path an then call path.transform(matrix). Whil

[android-developers] Performant implementation of the overlay (like in myTracks)

2009-05-11 Thread androidDeveloper
Hello Guys, anyone knows how to implement an overlay on googles mapview very fast and performant just like in the application mytracks? Especially when many points have to be drawn on the overly. In the mytracks app, it is alwas very fast independent how much points are drawn... Here is the