[android-developers] Re: VideoView playing video but no audio

2013-05-14 Thread RS
> > > This is what I use in my activity- it works for me. May be try with MP4 > or MP3 which is usually best supported by video view. If it work then it > is codec issue. You can try free opensource android players like xmbc, vlc > or vid for solving codec issues. > videoView = (VideoView)

[android-developers] Re: onConfigurationChanged() is not called when flipping between landscape and reverse landscape?

2012-12-14 Thread RS
ut uses the new orientation in sensor value mangling. Framework must inform the activity of the change if it chooses to alter sensor values by the new (flipped) orientation. Thanks, RS [1] http://developer.android.com/reference/android/hardware/SensorManager.html#remapCoordinateSystem(floa

Re: [android-developers] Re: onConfigurationChanged() is not called when flipping between landscape and reverse landscape?

2012-12-12 Thread RS
ut uses the new orientation in sensor value mangling. Framework must inform the activity of the change if it chooses to alter sensor values by the new (flipped) orientation. Thanks, RS [1] http://developer.android.com/reference/android/hardware/SensorManager.html#remapCoordinateSystem(floa

[android-developers] Android board for Industrial Automation

2012-07-18 Thread RS
Hi We need an Android board for using inside devices for Industrial Automation. Can you please suggest where I can buy this board? Thanks 2S -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to an

[android-developers] HDMI out

2012-07-10 Thread RS
n to me in my company. Please help me with reference or source code Thanks RS -- 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

[android-developers] Re: Google Plugin Beta 2.4 - C2DM Always tries to register at local ip and times out.

2011-08-05 Thread RS
since the recent update to the plugin (2.4), the auto generated example isn't able to register with C2DM on production device (using the same accounts as before that worked). On Jun 19, 2:43 pm, Andy Bryant wrote: > When you run your app against your local app engine, Eclipse generates > a file a

[android-developers] Re: revoke permissions to access google auth tokens

2011-06-19 Thread RS
do it through the central web based accounts dashboard (which for now doesn't display info about android apps) http://www.google.com/url?sa=D&q=https://www.google.com/accounts/IssuedAuthSubTokens I could possibly post this on android-platform group as well. On Jun 17, 5:02 pm, RS wrote: >

[android-developers] Re: revoke permissions to access google auth tokens

2011-06-17 Thread RS
falls in a different sub-category and might be quicker to solve. Hope a google employee could comment on any future updates to the account management flow that they might have. Thanks, RS On Jun 17, 4:28 pm, Nikolay Elenkov wrote: > On Fri, Jun 17, 2011 at 11:21 PM, RS wrote: > > Simpl

[android-developers] Re: revoke permissions to access google auth tokens

2011-06-17 Thread RS
#x27;, how could they undo this action for that particular android app+account? Regards, RS On Jun 17, 2:59 pm, RS wrote: > Sorry if that reply instigated these comments. Am glad you still had > patience to respond. > > Chrome to phone is probably showing up there having a server si

[android-developers] Re: revoke permissions to access google auth tokens

2011-06-17 Thread RS
Please clarify. AccountManager document doesn't answer this. AOSP on source.android.com doesn't have relevant code to clear tokens etc. Thanks for your time, RS On Jun 17, 12:35 pm, Nikolay Elenkov wrote: > On Fri, Jun 17, 2011 at 8:07 PM, RS wrote: > > Well, I came here only afte

[android-developers] Re: revoke permissions to access google auth tokens

2011-06-17 Thread RS
ounts/IssuedAuthSubTokens Nor does google apps dashboard help. Help me revoke access to an android app already granted access to a google account either through the device or google accounts through any browser. Thanks RS On Jun 16, 5:01 pm, Nikolay Elenkov wrote: > On Fri, Jun 17, 2011 at 12:47 AM, R

[android-developers] Re: revoke permissions to access google auth tokens

2011-06-16 Thread RS
community seemingly has no idea on this ... could anybody from google perhaps answer hellooo.. On Jun 15, 10:48 am, RS wrote: > Once an app is allowed to access an account's auth token, how can a > user revoke? > > android.permission.USE_CREDENTIALS > > Also once an app

[android-developers] revoke permissions to access google auth tokens

2011-06-15 Thread RS
rce closes. That might be bad implementation but still there must be a central control to allow/deny/ revoke/change access to auth tokens on per app basis. Which app's clear data/cache is safe to go for a clean start without affecting stock apps? Thanks RS -- You received this message

[android-developers] Re: Action bar through compatibility lib on 1.x, 2.x API

2011-04-15 Thread RS
and loaders on pre-HC devices. >  It does not have any other major features; it just has a smattering of > helpers for small specific methods that don't exist on older platforms. > > > > > > > > > > On Fri, Apr 15, 2011 at 7:47 AM, RS wrote: > > Is the

[android-developers] Re: Action bar through compatibility lib on 1.x, 2.x API

2011-04-15 Thread RS
Thanks Mark, shall try it out. Is that example (on git) for 3.0 only or would it work on pre-honeycombs with the compatibility lib changes? On Apr 15, 4:00 pm, Mark Murphy wrote: > On Fri, Apr 15, 2011 at 10:47 AM, RS wrote: > > Is the compatibility library expected to help with acti

[android-developers] Action bar through compatibility lib on 1.x, 2.x API

2011-04-15 Thread RS
); What am I doing wrong? Or is it just to use fragments in options menu that show at the bottom of the screen? Thanks in advance. RS ps: The only relevant thread in this group was the one with Dianne Hackborn's reply asking us to properly try the samples out. Yes, I have already included the jar an

[android-developers] WakeLock acquire(timeout) Runtime exception

2011-01-31 Thread RS
Hi All, I get a Runtime exception when my wait lock gets expired . Is it because I am trying to release a lock that was acquired with a timeout? I am using the following code to acquire the wakelock before a view is activated. private PowerManage.WakeLock wakeLock; public void

[android-developers] Re: Permission Denied exception on SD Card Write - Manifest has the permission

2011-01-27 Thread RS
n 26, 9:05 pm, RS wrote: > Hello .. > I am writing a file to the SD card but getting > > INFO/SdCardManager(24132): > Failed to create the temp file..java.io.FileNotFoundException: /mnt/ > sdcard/jest/t.txt (Permission denied) > > In the manifest I have the

[android-developers] Re: Permission Denied exception on SD Card Write - Manifest has the permission

2011-01-26 Thread RS
t;+state); return (mExternalStorageAvailable && mExternalStorageWriteable); } On Jan 26, 9:05 pm, RS wrote: > Hello .. > I am writing a file to the SD card but getting > > INFO/SdCardManager(24132): > Failed to create the temp file..java.io.FileNot

[android-developers] Permission Denied exception on SD Card Write - Manifest has the permission

2011-01-26 Thread RS
Hello .. I am writing a file to the SD card but getting INFO/SdCardManager(24132): Failed to create the temp file..java.io.FileNotFoundException: /mnt/ sdcard/jest/t.txt (Permission denied) In the manifest I have the following: Totally lost - how can I resolve this issue? I nee

[android-developers] Playing mp3 files directly from a Zip file

2011-01-24 Thread RS
I have a zip file that contains mp3 tracks. I would like to play these tracks directly from the Zip file (without decompressing). I tried the various uri formats but none seem to work with the MediaPlayer. Am I missing something... to give an idea here is what I am doing: String ur

[android-developers] Re: Android devices supporting OpenGL ES 2.0 (at least through NDK) as of September 2010

2010-10-26 Thread RS
At last found one on net that almost answers it all: http://www.glbenchmark.com/result.jsp (Had to a phone/device and then 'OpenGL ES Environment Variables' there.) On 20 Oct, 09:54, RS wrote: > A good compilation by Ellis Markov: > > http://stackoverflow.com/questions/38

[android-developers] Re: Android devices supporting OpenGL ES 2.0 (at least through NDK) as of September 2010

2010-10-20 Thread RS
A good compilation by Ellis Markov: http://stackoverflow.com/questions/3881197/opengl-es-2-0-extensions-on-android-devices And now more than 75% devices in use (sold in the last two years) have OpenGL ES 2.0 support at least through NDK. On Sep 23, 9:12 am, RS wrote: > Dan, I do underst

[android-developers] Re: OpenGL video capture

2010-09-23 Thread RS
Last time I looked for this, the only convenient method I found was to use an external camera. Sorry about the punt, but that worked for me as it was just for a demo video. Theoretically you could render a frame one at a time, once rendered, glReadPixels save as png or some format on the sdcard.

[android-developers] Re: Android devices supporting OpenGL ES 2.0 (at least through NDK) as of September 2010

2010-09-23 Thread RS
tage? How much market does one actually lose if they choose to go with - es 2.0 capable devices only? - VBO capable devices only? ... Thanks, RS On Sep 23, 3:50 am, dan raaka wrote: > are you looking to target devices which supports openGL 2.0 or just want to > know the extensions supporte

[android-developers] Re: Android devices supporting OpenGL ES 2.0 (at least through NDK) as of September 2010

2010-09-21 Thread RS
and regards, RS On Sep 21, 4:43 pm, Robert Green wrote: > You're going to find a couple of major chips used for Android phones > so just knowing that lets you know what it supports: > > Integrated CPU/GPU > Qualcomm MSM7200 - OpenGL ES 1.1 (G1, Hero, MyTouch, Cliq, Blur, Eris) >

[android-developers] Re: Android devices supporting OpenGL ES 2.0 (at least through NDK) as of September 2010

2010-09-21 Thread RS
Thanks, hope that would be the same on the Samsung tablet too. I'd be very happy to hear from anybody with any other device even if it doesn't support OpenGL ES 2.0, especially if you could post the supported extensions. Thanks again. RS On Sep 21, 1:05 pm, nagaraj attimani wrote:

[android-developers] Android devices supporting OpenGL ES 2.0 (at least through NDK) as of September 2010

2010-09-21 Thread RS
://stackoverflow.com/questions/2093594/opengl-extensions-available-on-different-android-devices Thanks in advance, RS -- 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@google

[android-developers] Browser Standalone

2010-02-15 Thread RS
i want to change the path of the libwebcore.so to the path of the browser application instead of "/system/lib" to make browser standalone how can i do this? Hint i have 2.1 version thanks alot -- You received this message because you are subscribed to the Google Groups "Android Developers" gr

[android-developers] Browser Standalone

2010-02-15 Thread RS
i want to change the path of the libwebcore.so to the path of the browser application instead of "/system/lib" to make browser standalone how can i do this? Hint i have 2.1 version thanks alot -- You received this message because you are subscribed to the Google Groups "Android Developers" gr

[android-developers] Re: How to make a View "touchable" visually?

2009-10-15 Thread RS
You'll have to provide background as a multi state drawable xml like res/drawable/my_multi_state_bg.xml Following is a sample xml. http://schemas.android.com/apk/res/android";> Point to that as in android:background="@drawable/my_multi_state_bg" or through java code wherever u p

[android-developers] Re: play video backward

2009-10-13 Thread RS
this. R.S On Oct 13, 5:16 pm, Marco Nelissen wrote: > The video frames depend on each other, and cannot be decoded > independently. You can't simply rearrange some data within the file to > have it play backwards. > > On Tue, Oct 13, 2009 at 8:27 AM, RS wrote: > > > Th

[android-developers] Re: play video backward

2009-10-13 Thread RS
e of T-Mobile USA, Inc. > > On Oct 12, 8:25 am, Marco Nelissen wrote: > > > On Mon, Oct 12, 2009 at 3:34 AM, RS wrote: > > > > How to play video in a time reversed direction? > > > You can't. > > > > The requirement is to loop playing for

[android-developers] Re: Possible to calculate yaw,pitch,roll from x,y,z magnetic field values alone?

2009-10-12 Thread RS
DD, there are a few special cases that won't work: If mag a sensor's first axis (say x) is already pointing mag north exactly, the mag components on the other two axis (say y,z) would be zero. here your x axis is not just towards north but is exactly tangential to one of the field lines connecti

[android-developers] play video backward

2009-10-12 Thread RS
How to play video in a time reversed direction? The requirement is to loop playing forward and backward repeatedly. Thanks a lot! R.S ps: The video is shot on the same android device (g1/adp1) --~--~-~--~~~---~--~~ You received this message because you are subscribe

[android-developers] Unswapped raw sensor orientation values?

2009-10-01 Thread RS
Does this still work? I don't see event value array lengths larger than 3 ever. From: http://developer.android.com/reference/android/hardware/SensorListener.html#onSensorChanged(int,%20float[]) " IMPORTANT NOTE: The axis are swapped when the device's screen orientation changes. To access the unsw

[android-developers] All apps are created equal; how to install/uninstall.

2009-09-25 Thread RS
Since the judging app isn't part of the firmware/system group, was just wondering, how come the ADC2 judging app manages to install and uninstall .. oh well, probably through market but can other apps do the same? How? Or is it possible only by apps that are from the same UID as the market app? T

[android-developers] Re: Hmm... at last ADC2 is out of our way ... tell about your app and experience

2009-09-03 Thread RS
arket... or update to it so that rest of the components work well with our new library. Thanks, RS and team. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group

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

2009-08-28 Thread RS
Dan, thanks for the confirmation. And anyway the submission process has been very smooth so far. Hope our updates (if any) don't get stuck on the last day. Regards, RS On Aug 27, 6:23 pm, Dan Morrill wrote: > We are not planning to extend the submission deadline. > - Dan > &g

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

2009-08-25 Thread RS
in the UK. Business submissions unfortunately may not happen at weekends. For contingency another week would be very useful. Regards, RS On Aug 25, 5:06 pm, "Maps.Huge.Info (Maps API Guru)" wrote: > I see no need to extend the deadline, it's been public since May 27th, > i

[android-developers] Re: ADC2 revising uploaded apps

2009-08-25 Thread RS
can be updated again and again till midnight 31st aug. On Aug 25, 11:11 pm, tansaku wrote: > Hi, > > Does anyone know if apps uploaded to the ADC can be modified before > the closing date, or if you upload once and that's it? > > Many thanks in advance > CHEERS> SAM --~--~-~--~~-

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

2009-08-25 Thread RS
over weekends and around midnights. And this request is due to the window being too short to yield for contingencies (unlike what was initially announced). Thanks for your time and thinking from shoes of another person. Regards, RS On Aug 25, 5:06 pm, "Maps.Huge.Info (Maps API Guru)" wrote:

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

2009-08-25 Thread RS
Dan, a little larger window would be very useful. May be an extension by a week or two .. as the site opened on 24th late night only. You could decide to pass it over to market .. say after 15th sept. And if announcing an extension, please let us know earlier than 28th so that we can work accordi

[android-developers] Re: ADC2 full terms and conditions

2009-07-13 Thread RS
well ok now it is rewrit as 13th and is available http://android-developers.blogspot.com/2009/07/adc-2-updates.html On Jul 2, 12:07 pm, RS wrote: > Yes there are many threads discussing similar stuff. But am eagerly > waiting to read this. > The official site still says it shall be ava

[android-developers] Re: sensor event and augmented reality

2009-07-10 Thread RS
Anybody using sensors and changing orientation > 90deg? On Jun 30, 4:31 pm, RS wrote: > Flinger source hasn't responded.. anybody who tried has any > suggestions.. > > Basically things work well in a single orientation.. its when > orientation changes that things go on a

[android-developers] ADC2 full terms and conditions

2009-07-02 Thread RS
Yes there are many threads discussing similar stuff. But am eagerly waiting to read this. The official site still says it shall be available in June 09. Others on my planet think that its July now.. I trust Google.. it has got to be some June 09 date today. Can the same developer submit multiple

[android-developers] Re: sensor event and augmented reality

2009-06-30 Thread RS
rt is there a right way to get rotation matrix from sensors even when orientation changes along with everything else? Thanks in advance RS On Jun 21, 4:03 pm, RS wrote: > Could somebody (Mathias Agopian alias pixelflinger perhaps) please > tell me how to use information fromsensorforaugme

[android-developers] Re: picasa

2009-06-22 Thread RS
Thanks a lot Sujay.. shall explore the rest. .. and if i find anything useful, shall post back. Regards, RS On Jun 22, 3:50 pm, Sujay Krishna Suresh wrote: > On Mon, Jun 22, 2009 at 7:32 PM, RS wrote: > > > Sure sujay some sample code would be very helpful. > > //src her

[android-developers] Re: picasa

2009-06-22 Thread RS
URL for my app to use .. for downloading or emailing to others? - And is there a possibility of tagging the photos? Thanks, -RS On Jun 22, 2:32 pm, Sujay Krishna Suresh wrote: > I havent found any docs, but u can make use of the built-in picasa app (if u > r workin in 1.5) to upload ur

[android-developers] picasa

2009-06-22 Thread RS
Is it possible to upload/download files (photos) from android to Picasa using our own apps. Is the content provider detail documented somewhere. Any API hint? Or is it just a closed component that can't be used outside google? Thanks RS --~--~-~--~~~---~--~

[android-developers] sensor event and augmented reality

2009-06-21 Thread RS
orientation sensor event returns yaw, pitch & roll in say eO[] What are the next steps to get rotation matrix that I could use in opengl to rotate a augmented scene overlapping the camera preview? Thanks and regards RS ps: I have used Matrix.setRotateEulerM (m, eO[0], eO[1], eO[2]); // tried

[android-developers] Re: sharedpreferences widget

2009-06-09 Thread RS
Thanks Jeff. That helped. On Jun 9, 10:16 pm, Jeff Sharkey wrote: > > 1) if there are multiple instances of the same widget how to > > differentiate each (so that the content could be different) eg. world > > clock: same clock widget for different countries on diffferent > > screen. > > You can

[android-developers] sharedpreferences widget

2009-06-09 Thread RS
I have a few questions on the default home screen's widget support: 1) if there are multiple instances of the same widget how to differentiate each (so that the content could be different) eg. world clock: same clock widget for different countries on diffferent screen. 2) is there any sharedpref

[android-developers] How to persist my canvas between calls to invalidate()

2009-06-07 Thread RS
Hi, I am trying to render a customized view which draws points on the canvas whenever they arrive from a remote device. Whenever a new value is obtained - it gets passed into my customized view which draws it on the canvas - ( The canvas should still show my previous points). Now whenever i call

[android-developers] Re: launching other apps

2009-06-04 Thread RS
Thanks a lot for the clarification. On Jun 4, 6:32 pm, Jeff Sharkey wrote: > > Is it possible to launch other apps from my app like the application > > launcher or home screen do? > > Yes, you just need to build the Intent correctly, either using a > well-known action string with any needed data

[android-developers] Re: launching other apps

2009-06-04 Thread RS
//developer.android.com/reference/android/provider/Settings.html&&http://developer.android.com/reference/android/app/Service.htmlfor > more > info. > > On Thu, Jun 4, 2009 at 7:21 PM, RS wrote: > > > yes ACTION_MAIN .. but is it expected to work when the apps are from >

[android-developers] Re: launching other apps

2009-06-04 Thread RS
n 4, 2009 at 6:55 PM, RS wrote: > > > Is it possible to launch other apps from my app like the application > > launcher or home screen do? > > > I don't want to try a home replacement app. > > > At least would a widget on home screen be able to launch other &

[android-developers] launching other apps

2009-06-04 Thread RS
Is it possible to launch other apps from my app like the application launcher or home screen do? I don't want to try a home replacement app. At least would a widget on home screen be able to launch other applications? Also can a widget on the (default) home screen receive swipe events (before a

[android-developers] Tabhost and TabWidget on Android 1.5

2009-06-01 Thread RS Android
org.eclipse.equinox.launcher.Main.basicRun(Main.java:504) at org.eclipse.equinox.launcher.Main.run(Main.java:1236) RS --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email

[android-developers] Re: Porting 1.0 to 1.5, map tiles stopped displaying

2009-05-03 Thread RS
Hi, Even i am facing problems to get a map displayed on the emulator. The MapView throws an error on LogCat saying "Couldn't get connection factory client" and then a series of I/O exception. I followed the steps given here: http://developer.android.com/guide/tutorials/views/hello-mapview.html , o

[android-developers] Placing an array of buttons of varying length on the layout

2009-05-03 Thread RS
Hi, I want to populate my UI with dynamic buttons at runtime. I am trying to invoke a feed from the net and based on the results (which are URLs pointing to image resources), i need to create buttons on the layout with their background set as images retrieved from URLs. I have an array of buttons