[android-developers] Google Play Leaderboards - Draft Mode - all beta testers?

2017-02-24 Thread Kevin Courtney
ss and that we have to actually Publish the leaderboards for the Beta users to access them? I was expecting that I could keep them in Draft Mode through the Beta phase so I can reset the scores periodically... Thanks, Kevin Courtney -- You received this message because you are subscribed to t

[android-developers] Documentation for the Android/Google TV YouTube player parameters

2012-02-01 Thread Kevin Courtney
.I've found various documents listing YouTube parameters but they are generally ignored when running on Android devices. For the playlist, the first video will play but not the others. Have any of you successfully used a playlist with the YouTube player? Thanks in advance, Kevin Courtney

[android-developers] Re: Documentation for the Android/Google TV YouTube player parameters

2012-02-01 Thread Kevin Courtney
:06 AM, Kevin Courtney kevinjcourt...@gmail.com wrote: Can any of you guide me to some documentation for the Android/Google TV YouTube player parameters? I doubt there is any official documentation. Bear in mind that the YouTube player is a proprietary application, not part of the Android

[android-developers] Live Wallpaper - Set Wallpaper - Need event to use to clear memory

2011-12-03 Thread Kevin Courtney
Hello, I've created a Live Wallpaper that displays an animation by storing 70 or so images in an array and then displays them one at time to create the animation. I used the structure of the CubeEngine to design it. For the most part it works. When I first select the wallpaper, it loads the

[android-developers] Using the Youtube Playlist parameter and/or creating dynamic playlists

2011-02-20 Thread Kevin Courtney
=YfWVYuUWkyAplaylist=M9s1I1TZqJg ; startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(testVideoURL))); Do any of you have any suggestions on using the playlist parameter from an Android app and/or any other ways of creating/using a dynamic playlist? Thanks in advance, Kevin

[android-developers] Re: Using the Youtube Playlist parameter and/or creating dynamic playlists

2011-02-20 Thread Kevin Courtney
, they will be appreciated. Kevin Courtney -- 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.com

[android-developers] Playing Multiple YouTube Videos Continuously

2010-12-01 Thread Kevin Courtney
Hello, I have a simple loop that queues up and plays several YouTube videos continuously: * * *for* (*int* i = *currentSongsDataHolders*.length - 1; i = 0; i--) { startActivity(*new* Intent(Intent.*ACTION_VIEW*, Uri.*parse*(*currentSongsDataHolders*[i].videoURL))); } This

[android-developers] Playing YouTube video in player with code

2010-10-06 Thread Kevin Courtney
Hello, I have code that will bring up a Youtube video on their webpage and the user has to then tap the play option to play it: videoURL = http://www.youtube.com/watch?feature=youtube_gdata_playerv=r4p8qxGbpOk; mWebView = new WebView(this); setContentView(mWebView);

[android-developers] Drawing a line dynamically in code

2010-09-22 Thread Kevin Courtney
Hello, This seems like a basic question but I’ve been struggling with it and need another set of eyes to set me straight. I’m trying to draw a line using code in a RelativeLayout and it’s not showing up. I have this XML file: ?xml version=*1.0* encoding=*utf-8*? shape

[android-developers] Re: Drawing a line dynamically in code

2010-09-22 Thread Kevin Courtney
://techdroid.kbeanie.com On Sep 22, 5:53 pm, Kevin Courtney kevinjcourt...@gmail.com wrote: Hello, This seems like a basic question but I’ve been struggling with it and need another set of eyes to set me straight. I’m trying to draw a line using code in a RelativeLayout and it’s not showing up.  I have