Re: [android-developers] Re: DatePicker

2013-03-01 Thread Sudheer Bhat
Try this: https://code.google.com/p/android-dateslider/source/browse/trunk/android-dateslider/src/com/googlecode/android/widgets/DateSlider/MonthYearDateSlider.java Regards, Sudheer On Thu, Feb 28, 2013 at 8:40 PM, bob wrote: > I would say there are two viable options: > > > 1. Subclass DatePi

Re: [android-developers] Re: Jni To Java BLock THe UI thread.

2011-08-19 Thread Sudheer Bhat
If you can do with Java solution, then on Java side after calling handler.sendMessage() call wait() & once the dialog is dismissed call notify() (of course making sure to wait() & notify() on the same object). Alternatively you could use CyclicBarrier or CountDownLatch in the java.util.concurrent p

Re: [android-developers] Re: Show Text On Screen

2011-06-02 Thread Sudheer Bhat
Use a FrameLayout & stack your TextView on top of GLSurfaceView. For a sample see: http://developer.android.com/resources/samples/ApiDemos/res/layout/surface_view_overlay.html Regards, Sudheer On Thu, J