[android-developers] Re: Samsung-Specific Media Player Errors

2011-03-30 Thread k7k0
Same here, some samsung users are complaining about not being able to play streamed mp3 files Here's some logcat V/PVPlayer( 2384): data source = http://static.uloops.net/banks/4d93305e8f6f4_21122393.mp3 V/PlayerDriver( 2384): Send player code: 3 V/PlayerDriver( 2384): handleSetDataSource

[android-developers] Big bug playing ogg files in Android 2.3 (a.k.a Stop the Android Audio Madness!)

2011-03-11 Thread k7k0
I'm having a big problem with Android 2.3, the MediaPlayer API seems broken with most .ogg files. If you grab a mono or non-44khz ogg file, after loading it into the MediaPlayer it reports ridiculous lengths using the getDuration() API. Is not just bad information, you can't use the seekTo

[android-developers] Re: Device Seeding Program for Top Android Market Developers

2010-03-02 Thread k7k0
Weird, not only we CANT sell apps from Argentina neither receive gifts.. On 2 mar, 21:46, Roman Nurik romannu...@google.com wrote: Folks, the email is NOT a fake. We will look into the email issues. Roman Nurik Android Developer Relations, Google NOTE: please do not send me email directly

[android-developers] Activity lifecycle: onRestart vs onActivityResult

2009-11-17 Thread k7k0
Hi, I have two activities A1 (main) and A2 (children) and two processes P1 and P2. A1 has this behavior: a) First time in the application I need to trigger P1 (onCreate using a splash in foreground) b) When arrive from other's activities or from A2 without results I need to trigger P1 (onRestart)

[android-developers] Re: how to set the size of tab in tabHost?

2009-07-09 Thread k7k0
On 29 mayo, 01:00, Android Users androidmai...@gmail.com wrote: Try this. tabHost.getTabWidget().getChildAt(0).setLayoutParams(new LinearLayout.LayoutParams(width,height)); It works! Thanks a lot. To avoid a new layout: tabHost.getTabWidget().getChildAt(0).getLayoutParams().height = 35;