[android-developers] ProgressBar in OpenGL

2012-03-01 Thread Rikki
I need to create multiple progress bars in OpenGL. Can anybody help in creating that. 1.x or 2.0 any will be okay to use. I have tried a lot to achive that but all efforts in vain and I need to show something concrete in a very short duration. it will be helpful if anyone has something to share. -

[android-developers] ProgressBar in OpenGL

2012-03-01 Thread Rikki
I need to create multiple progress bars in OpenGL. Can anybody help in creating that. 1.x or 2.0 any will be okay to use. I have tried a lot to achive that but all efforts in vain and I need to show something concrete in a very short duration. it will be helpful if anyone has something to share. -

[android-developers] Re: draw texture in OpenGL Android from 0,0 coordinates

2012-03-02 Thread Rikki
t change the vertices if you don't have to. > > To "move" an image just perform a glTranslate. So what you do is like > this: > > glTranslate(0,0); > DrawYourImage(); > glTranslate(x,x); > DrawYourImage(); > glTranslate(x,x); > DrawYourImage();

[android-developers] Control colors in openGL

2012-03-07 Thread Rikki
aw(gl); //draw progress gl.glPopMatrix(); -Rikki -- 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 and

[android-developers] Control colors in openGL

2012-03-07 Thread Rikki
aw(gl); //draw progress gl.glPopMatrix(); -Rikki -- 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 and

[android-developers] Re: adding radio buttons to a popup window. (fixed)

2012-03-07 Thread Rikki
You can try customizing Dialog. See http://developer.android.com/guide/topics/ui/dialogs.html#CustomDialog -Rikki On Mar 7, 7:53 am, Ray Tayek wrote: > At 09:00 PM 3/6/2012, you wrote: > > >,,, the radio buttons work fine when added to the main layout. but > >when i add

[android-developers] Merging Bounce animation with sliding animation (bounce like zoom out/zoom in)

2012-03-30 Thread Rikki
I need to mix two animations between my activity switching. I already have slide-in/out left/right animations in place but I want to give a effect of Z-axis bounce to the new activity coming in focus. It should look give the following effect: When next activity is called, current activity is slid

[android-developers] texture drawing on android OpenGL

2012-02-03 Thread Rikki
appreciated. -Rikki -- 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...@googlegroups.co

[android-developers] draw texture in OpenGL Android from 0,0 coordinates

2012-02-08 Thread Rikki
I'm new to opengGL and excuse if the questions are too naive. I'm going through some tuturials for seeking help on learning this. I have a small program written where i'm drawing a texture on a GLSurfaceView. I want to draw a number of textures(bitmap images) in a sequential order starting from 0,

[android-developers] Horizontal scrolling in grid view

2011-09-06 Thread Rikki
2). I don't know if horizontalscrollview is supported by 2.x SDK ~Rikki -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email t

[android-developers] Re: Control HDMI output during live streaming

2011-09-26 Thread Rikki
I'm also looking for it. Let me know if you"ve found some lead and can share some insights Thanks, Rikki On Jul 11, 4:45 pm, Amit wrote: > Hi > > I need to do some output control for HDMI output. I need to block HDMI > output during Live streaming when the device is conn

[android-developers] How to send HD (High Definition) output from android Tab to HDtv

2011-09-26 Thread Rikki
s for connecting, detecting and data transfer through HDMI port/adapter. I want my application to detect the HDTV when connected through HDMI port and then start showing chosen data on TV. Any help will be appreciated. Thanks, Rikki -- You received this message because you are subscribed to the G

[android-developers] Re: How to send HD (High Definition) output from android Tab to HDtv

2011-09-27 Thread Rikki
I don't want to use the view on tv feature from gallery. I want my own application to detect and start sending data to the connected TV. something like a TV OUT capability. gjs wrote: > Hi, > > This is transparent to apps, just plug in cable & view on TV. > > Regards >

[android-developers] Re: How to remove the black space between the tittle bar and the first element of a LinearLayout?

2011-10-10 Thread Rikki
Hi, Can you share your xml file? Well, you can also see the Graphics view of your xml file and see how your view will look like on the layout. Thanks, Rikki On Oct 10, 2:40 pm, saex wrote: > share [fb] share [tw] > > I have a linearlayout, wich the first element is a imageview head

[android-developers] Re: How to remove the black space between the tittle bar and the first element of a LinearLayout?

2011-10-10 Thread Rikki
That could also be a blank title bar. Use android:theme="@android:style/Theme.NoTitleBar.Fullscreen" in manifest.xml file for that particular activity and that gap will be gone. Thanks, Rikki On Oct 10, 2:40 pm, saex wrote: > share [fb] share [tw] > > I have a linearlay

[android-developers] Re: How to compile my HelloAndroid android projectby batch file in windows

2011-10-10 Thread Rikki
Use this: http://developer.android.com/guide/developing/projects/projects-cmdline.html On Oct 10, 2:39 pm, amon wu wrote: > I have no idea... > The leader ask me to do so. > Give me a hand, please! > > thx > > On 10月10日, 下午5时33分, nainfanta wrote: > > > > > why not Eclipse? > > > nainfanta > > >

[android-developers] Re: is this possible to start an app every 5mins

2011-10-10 Thread Rikki
Use a service to launch your activities. Read http://developer.android.com/guide/topics/fundamentals/services.html for details. On Oct 10, 3:09 pm, GopalaKrishnan D wrote: > is this possible to start an app every 5mins?  how to do that one... > pls help me > > -- > ~* Regards* > *GopalaKrishnan D

[android-developers] Help Needed on Adding Overlays on MapView

2011-07-26 Thread Rikki
I am a newbie to android development. Kindly spare me if I ask wrong questions. I am developing a POI search for gas stations nearby the current GPS location. Whenever my application starts, It should get the current location and based on that run a POI search in the background and plot them on th

[android-developers] Need help on adding overlays on Map View

2011-07-26 Thread Rikki
Hi I am a newbie to Android Development. So spare me if I ask wrong questions I am developing a POI search app for nearby gas stations according to my current location. I am using googlemapview for displaying the maps and using locationmanager to get current location. Now I want to add overlays to

[android-developers] Application stop unexpectedly

2011-07-26 Thread Rikki
I am receiving application stopped unexpectedly from the following piece of code. Can someone help package pkg.navigate; import android.app.Activity; import android.os.Bundle; import android.os.CountDownTimer; import android.widget.TextView; public class navigateActivity extends Activity { /

[android-developers] Re: Application stop unexpectedly

2011-07-26 Thread Rikki
place it in onCreate() method, after this line. > >  setContentView(R.layout.main); > > > > > > On Tue, Jul 26, 2011 at 6:29 PM, Rikki wrote: > > I am receiving application stopped unexpectedly from the following > > piece of code. Can someone help > > >

[android-developers] Any Alternative for Google Places and Directions API??

2011-08-03 Thread Rikki
welcome Thanks, Rikki -- 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...@google

[android-developers] Speedometer Development - Help Needed

2011-08-10 Thread Rikki
time. Any already written code that can help on the similar lines will help a lot thanks in advance... Thanks, Rikki -- 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@g