[android-developers] sl4a: create a well formatted list ?

2011-11-22 Thread Stef Mientki
hello, is it possible to make a list like the attached picture with sl4a ? or should I use html for that ? thanks, Stef -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-

[android-developers] Mirror effect on TextView

2008-10-08 Thread stef
HI, Trying to write a mirror image of some text. I created a new widget derived from TextView and the overridden onDraw(Canvas canvas) looks like @Override protected void onDraw(Canvas canvas) { canvas.scale(-1.0f, 1.0f); super.onDraw(canvas); } I would expect to

[android-developers] How to add button to MediaController?

2008-09-23 Thread stef
Hi, been trying to modify the MediaController widget to add a few custom buttons. I have tried to subclass it and add buttons to the linearlayout before te rewind and after tge fast forward with no success... is this even possible? I can always create my own MediaController class but that seems t

[android-developers] VideoView questions

2008-09-18 Thread stef
Hi, I am able to play videos using MediaPlayer and VideoView. Although I can play clips in full screen using MediaPlayer directly, with VideoView, it simply refuses to use the entire screen. My code is the same as the example provided wiht the APIDemo. Is this is known limitation of VideoView? A