[android-developers] [1.1_r1 SDK] Capturing Screen Issue

2009-03-31 Thread yarik...@gmail.com
Hi! I'm trying to get screenshot of GLSurfaceView sample with the following code: http://www.everfall.com/paste/id.php?c4h4lwesb3nu According to all docs that should works properly but it does not, resulting image is entire white. Can't imagine what is the essence of the problem (( --~--~-

[android-developers] adb push wtf

2009-04-03 Thread yarik...@gmail.com
C:\android-sdk-windows-1.1_r1\tools>adb push C:\src\test \data failed to copy 'C:\src\test' to '\data': Read-only file system wtf?? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post t

[android-developers] Re: adb push wtf

2009-04-03 Thread yarik...@gmail.com
thanks a lot! --~--~-~--~~~---~--~~ 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-

[android-developers] Android/G1 video driver

2009-04-09 Thread yarik...@gmail.com
Where can I find G1 video driver source? --~--~-~--~~~---~--~~ 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 gro

[android-developers] Re: Android/G1 video driver

2009-04-09 Thread yarik...@gmail.com
or), released under the > Apache 2.0 > license. Look for "pixelflinger" in the sources. > > On Thu, Apr 9, 2009 at 4:28 PM, yarik...@gmail.com wrote: > > > > > > > Where can I find G1 video driver source? --~--~-~--~~~---~--~

[android-developers] Sound in games

2009-10-09 Thread yarik...@gmail.com
Hi all! I have pretty common question: is there any bug-free way to implement sound effects in a game? Or we only have unpredictable SoundPool with its horrible bugs? Or MediaPlayer that can only play one sound at once and which is not solution for a game at all? In fact, it is disturbing quest

[android-developers] Observer for Adaper

2009-04-27 Thread yarik...@gmail.com
Hi everyone! I have an BaseAdapter and I need to know when it stops to change data ( eg View getView(int position, View convertView, ViewGroup parent) is no more calling ). I tried to use registerDataSetObserver method of the Adapter: public class DataObserver extends DataSetObserver {

[android-developers] Re: GridView and BaseAdapter position bug

2009-04-28 Thread yarik...@gmail.com
I have exactly same problem. Why do we have 102 values of position when there is only 100 cells displayed on screen? "position is changed like: 0, 0, 1, 2, 3... 99, 0" - what is the cause of that? Can someone from google team answer? That seems to be a bug, very annoying bug. Answer "It's not a bu

[android-developers] Re: GridView and BaseAdapter position bug

2009-04-28 Thread yarik...@gmail.com
tView() out of order and more times than the number of views that > >> will fit on screen, depending how the Grid/ListView is measured/laid > >> out. > > >> 2009/4/28 yarik...@gmail.com : > > >> > I have exactly same problem. Why do we have 102 values of posi

[android-developers] Re: Observer for Adaper

2009-04-28 Thread yarik...@gmail.com
Anybody? On 28 апр, 00:26, "yarik...@gmail.com" wrote: > Hi everyone! > I have an BaseAdapter and  I need to know when it stops to change data > ( eg View getView(int position, View convertView, ViewGroup parent) is > no more calling ). > I tried to use registerData