User Alexander Stolz - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T22:01:55Zhttp://stackoverflow.com/feeds/user/2450http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1893072/getting-frames-from-video-image-in-android0Getting frames from Video Image in AndroidAlexander Stolz2009-12-12T11:09:04Z2009-12-14T15:15:48Z
<p>I've implemented a simple application which shows the camera picture on the screen. What I like to do now is grab a single frame and process it as bitmap.
From what I could find out to this point it is not an easy thing to do.</p>
<p>I've tried using the onPreviewFrame method with which you get the current frame as a byte array and tried to decode it with the BitmapFactory class but it returns null.
The format of the frame is a headerless YUV which could be translated to bitmap but it takes too long on a phone. Also I've read that the onPreviewFrame method has contraints on the runtime, if it takes too long the application could crash.</p>
<p>So what is the right way to do this? </p>
http://stackoverflow.com/questions/1852232/dataoutputstream-not-flushing0DataOutputStream not flushingAlexander Stolz2009-12-05T13:43:54Z2009-12-06T08:53:36Z
<p>I have a Java Client which sends UTF-8 strings to a C# TCP-Server, I'm using a DataOutputStream to send the strings. The code looks like this:</p>
<pre><code>public void sendUTF8String(String ar) {
if (socket.isConnected()) {
try {
dataOutputStream.write(ar.getBytes(Charset.forName("UTF-8")));
dataOutputStream.flush();
} catch (IOException e) {
handleException(e);
}
}
}
</code></pre>
<p>The problem is that flush doesn't seem to work right. If I send two Strings close to each other, the server receives only one message with both strings. The whole thing works if I do a Thread.sleep(1000) between calls, this is obviously not a solution.
What am I missing?</p>
http://stackoverflow.com/questions/1612542/virtual-devices-in-windows0Virtual Devices in WindowsAlexander Stolz2009-10-23T10:19:30Z2009-10-24T19:35:03Z
<p>I'm trying to write a remote control application which should allow a user to control a pc with a wireless device. It should be possible to use the device for example as game controller. I've got the advice to create a virtual device but I couldn't find any information on how to do that.
What possibilities do I have to do that in Java or .Net?</p>
http://stackoverflow.com/questions/428225/jogl-shader-programming3Jogl Shader programmingAlexander Stolz2009-01-09T14:29:31Z2009-09-26T05:08:51Z
<p>I just started Shader programming(GLSL) and created a few with RenderMonkey. Now I want to use this Shaders in my java code. Are there any simple examples of how I do that?</p>
http://stackoverflow.com/questions/1277604/fmj-webcam-capture-example0FMJ Webcam capture exampleAlexander Stolz2009-08-14T12:32:16Z2009-09-21T08:44:12Z
<p>I've been searching for while now and I can't find a simple example of how to capture a webcam stream with FMJ. Are there any tutorials or examples available which could help me?</p>
http://stackoverflow.com/questions/532780/catia-caa-catkeyboardevent1CATIA-CAA CATKeyboardEventAlexander Stolz2009-02-10T15:25:16Z2009-08-17T23:32:44Z
<p>I know there are only a few CAA Programmers in the world but I try it anyway...</p>
<p>I can't get keyboard events to work. I found this code which looks reasonable but the Notification doesn't fire.</p>
<pre><code>AddAnalyseNotificationCB(CATFrmLayout::GetCurrentLayout()->GetCurrentWindow()->GetViewer(),
CATKeyboardEvent::ClassName(),
(CATCommandMethod)&PROTrvTreeView::OnKeyboardEvent, NULL);
void PROTrvTreeView::OnKeyboardEvent(CATCommand * ipCmd, CATNotification * ipEvt, CATCommandClientData iobjData) {
cout<< "KeyboardEvent" <<endl;
}
</code></pre>
<p>Anyone any idea?</p>
http://stackoverflow.com/questions/1272018/painting-over-jmf-component0Painting over JMF componentAlexander Stolz2009-08-13T13:39:48Z2009-08-14T17:05:50Z
<p>I'm capturing the Stream from a webcam and would like to draw something on top of the video image. I try that in the example below, the problem is that the other component is always in the background no matter how I arrange the components.
Is there a way do solve this? </p>
<pre><code>public class SwingCapture extends JPanel {
private static final long serialVersionUID = -1284686239737730338L;
private static Player player = null;
public static final int WIDTH = 640;
public static final int HEIGHT = 480;
private MediaLocator ml = null;
public SwingCapture()
{
setLayout(null);
setSize(WIDTH, HEIGHT);
ml = new MediaLocator("vfw:Microsoft WDM Image Capture (Win32):0");
try {
player = Manager.createRealizedPlayer(ml);
player.start();
Component comp = null;
if ((comp = player.getVisualComponent()) != null) {
add(comp);
comp.setBounds(0, 0, 640, 480);
}
add(Canvas.getInstance());
Canvas.getInstance().setBounds(0, 0, 640, 480);
}
catch (Exception e)
{
e.printStackTrace();
}
}
public static void playerclose() {
player.close();
player.deallocate();
}
}
</code></pre>
http://stackoverflow.com/questions/1272018/painting-over-jmf-component/1278230#12782300Answer by Alexander Stolz for Painting over JMF componentAlexander Stolz2009-08-14T14:36:04Z2009-08-14T17:05:50Z<p>I have solved the problem. I used a Manager.setHint(Manager.LIGHTWEIGHT_RENDERER, true);
and a JLayerPane.</p>
<pre><code>public class SwingCapture extends JPanel {
private static final long serialVersionUID = -1284686239737730338L;
public static Player player = null;
public static final int WIDTH = 640;
public static final int HEIGHT = 480;
public MediaLocator ml = null;
public SwingCapture() {
setLayout(null);
setSize(WIDTH, HEIGHT);
JLayeredPane jLP = new JLayeredPane();
jLP.setBounds(0,0,800,600);
ml = new MediaLocator("vfw:Microsoft WDM Image Capture (Win32):0");
try {
Manager.setHint(Manager.LIGHTWEIGHT_RENDERER, true);
player = Manager.createRealizedPlayer(ml);
player.start();
jLP.add(Canvas.getInstance());
Canvas.getInstance().setBounds(0, 0, 200, 200);
Component comp = null;
if ((comp = player.getVisualComponent()) != null) {
jLP.add(comp, -1);
comp.setBounds(0, 0, 640, 480);
}
add(jLP);
} catch (Exception e) {
e.printStackTrace();
}
}
public static void playerclose()
{
player.close();
player.deallocate();
}
}
</code></pre>
http://stackoverflow.com/questions/1270774/reading-and-writing-on-webcam-stream0Reading and writing on webcam streamAlexander Stolz2009-08-13T08:29:04Z2009-08-13T08:44:52Z
<p>Is it possible to use java to write into a webcam stream? I've tried JMF and got it to capture the image but couldn't find a possibility to write into the stream.</p>
http://stackoverflow.com/questions/1216017/allowing-framing-on-stackoverflow-with-greasemonkey2Allowing framing on Stackoverflow with Greasemonkey [closed]Alexander Stolz2009-08-01T06:56:52Z2009-08-01T07:16:29Z
<p>I'm using Stackoverflow with the Google Reader and the Better GReader Plugin for Firefox.
When I'm trying to open a question with the preview function I get:</p>
<pre><code>"For security reasons, framing is not allowed; click OK to remove the frames."
</code></pre>
<p>Is there a way to prevent this with a Greasemonkey script?</p>
http://stackoverflow.com/questions/1133665/how-do-you-import-main-classes-in-test-classes-in-maven1How do you import main classes in test classes in Maven?Alexander Stolz2009-07-15T20:07:27Z2009-07-30T19:17:33Z
<p>I have generated a new Scala project with Maven and it created a folder structure with a src/main/scala and a src/test/scala folder.
I have some code in src/main/scala and wanted to write some tests, the problem is that I can't import the classes from src/main/scala.
How do I do that?</p>
http://stackoverflow.com/questions/1206095/how-to-get-the-project-name-in-eclipse2How to get the project name in eclipse?Alexander Stolz2009-07-30T11:48:53Z2009-07-30T13:39:58Z
<p>How do I get the name of the current eclipse project? I'm in a GMF view and need the projectname when some submenu of the popup menu ist used.</p>
http://stackoverflow.com/questions/1135731/java-lang-nosuchmethoderror-main-when-starting-helloworld-with-eclipse-scala-plu/1152266#11522661Answer by Alexander Stolz for java.lang.NoSuchMethodError: main when starting HelloWorld with Eclipse Scala pluginAlexander Stolz2009-07-20T08:15:09Z2009-07-20T08:15:09Z<p>I solve the problem by cleaning the project, then going to the class with the main method and building it with strg+s (auto build on). Works like a charm.</p>
http://stackoverflow.com/questions/1084572/mixing-multiple-traits-in-scala/1084716#108471610Answer by Alexander Stolz for Mixing Multiple Traits in ScalaAlexander Stolz2009-07-05T19:58:08Z2009-07-06T06:14:03Z<p>It is easy, when declaring a class you just use the "with" keyword as often as you want</p>
<pre><code>class CollegeStudent extends Student with Worker with Underpaid with Young
</code></pre>
<p>the order of the traits can be important if a trait is changing the behavior of the class, it all depends on traits you are using.</p>
<p>Also if you don't want to have a class which always uses the same traits you can use them later:</p>
<pre><code>class CollegeStudent extends Student
new CollegeStudent with Worker with Underpaid with NotSoYoungAnymore
</code></pre>
http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/1078441#10784410Answer by Alexander Stolz for How to check if the given string is palindrome?Alexander Stolz2009-07-03T08:53:44Z2009-07-03T08:53:44Z<p><strong>Scala</strong></p>
<pre><code>def pal(s:String) = Symbol(s) equals Symbol(s.reverse)
</code></pre>
http://stackoverflow.com/questions/1058408/is-it-bad-practice-to-send-an-actor-a-message-from-something-which-is-not-an-act/1060931#10609310Answer by Alexander Stolz for Is it bad practice to send an actor a message from something which is not an actor?Alexander Stolz2009-06-29T22:39:31Z2009-06-29T22:39:31Z<p>I don't see a problem with doing that. If it makes sense in your code, then why not?
If you look at the pure actor model everything is an actor and only actors are communicatinng with each other, if you can design your code like this..great..if you can't or don't want to then it's ok to send messages from non-actors to actors.</p>
http://stackoverflow.com/questions/1002164/how-can-i-write-applications-in-c-or-c-for-android/1049127#10491270Answer by Alexander Stolz for how can I write applications in C or C++ for Android?Alexander Stolz2009-06-26T13:28:14Z2009-06-26T13:28:14Z<p>Google just released the NDK which allows exactly that.</p>
<p><a href="http://feedproxy.google.com/~r/blogspot/hsDu/~3/2foWz7hwFtE/introducing-android-15-ndk-release-1.html" rel="nofollow">http://feedproxy.google.com/~r/blogspot/hsDu/~3/2foWz7hwFtE/introducing-android-15-ndk-release-1.html</a> </p>
<p>It can be found here:
<a href="http://developer.android.com/sdk/ndk/1.5_r1/index.html" rel="nofollow">http://developer.android.com/sdk/ndk/1.5_r1/index.html</a></p>
http://stackoverflow.com/questions/25046/lisp-executable7Lisp ExecutableAlexander Stolz2008-08-24T13:42:35Z2009-06-25T17:32:51Z
<p>I've just started learning Lisp and I can't figure out how to compile and link lisp code to an executable.
Im using clisp and "clisp -c" produces two files .fas and .lib, what do I do next to get an exeutable?</p>
http://stackoverflow.com/questions/1010739/help-with-project-euler-200/1018737#10187370Answer by Alexander Stolz for Help with Project Euler #200?Alexander Stolz2009-06-19T15:56:38Z2009-06-19T15:56:38Z<p>Aren't you supposed to think of a clever solution which doesn't take a day or even an hour to run? :D
I think the problem is isProbablePrime, which doesn't guarantee that a number is a prime. It just says that a prime which was found could be a prime with a certain probability.
You should use an algorithm which is certain that it has found a prime.</p>
http://stackoverflow.com/questions/961944/overlapping-views-in-android3Overlapping Views in AndroidAlexander Stolz2009-06-07T14:10:20Z2009-06-12T22:18:59Z
<p>Is it possible to have overlapping views in Android? I would like to have an ImageView with a transparent png in the front and another view in the background.</p>
<p>edit:</p>
<p>This is what I have at the moment, the problem is that the image in the imageView is not transparent, the parts that should be transparent are just black.</p>
<pre><code><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/gallerylayout"
>
<Gallery android:id="@+id/overview"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
<ImageView android:id="@+id/navigmaske"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:src="@drawable/navigmask"
/>
</RelativeLayout>
</code></pre>
<p>edit:</p>
<p>I got it to work, it was a theme file from another programmer on the team.
Just changed this</p>
<pre><code><item name="android:background">#FF000000</item>
</code></pre>
<p>to this</p>
<pre><code><item name="android:background">#00000000</item>
</code></pre>
http://stackoverflow.com/questions/989233/actor-model-advantages-to-shared-state0Actor Model advantages to shared stateAlexander Stolz2009-06-12T21:49:44Z2009-06-12T22:02:42Z
<p>I'm reading about the Actor Model for a presentation and everyone claimes that it is superior to shared state parallel programming because it avoids many pitfalls like deadlocks and race conditions. I'm asking myself what the specifics of this claims are.
If it avoids these problems, how does it do it?</p>
http://stackoverflow.com/questions/725496/android-coverflow1Android coverflowAlexander Stolz2009-04-07T12:40:20Z2009-04-07T14:54:14Z
<p>Im writing an app for android and would like to have an itunes like coverflow preview.
Is there anything in the api that I can use or do I have to build it from scratch?</p>
http://stackoverflow.com/questions/540906/scala-remote-actors2Scala remote actorsAlexander Stolz2009-02-12T11:25:34Z2009-03-19T18:27:21Z
<p>Are there any guides or tutorials which explain the possibility to use scala actors remotely? All I have found until now is one example (without comments) but that's hardly enough.</p>
http://stackoverflow.com/questions/27482/latexpdf-rights-management6Latex=>PDF Rights managementAlexander Stolz2008-08-26T06:24:16Z2009-03-16T21:49:38Z
<p>Im currently writing my bachelor thesis with latex and using TexnicCenter. I want to be able to send my generated pdf file to people and they should be able to write comments.
It seems like commenting is not allowed by default, how do I change this?</p>
<p>I am using straight to PDF with pdflatex and acrobat reader 9 to read and comment on the files</p>
http://stackoverflow.com/questions/428225/jogl-shader-programming/545083#5450833Answer by Alexander Stolz for Jogl Shader programmingAlexander Stolz2009-02-13T07:44:35Z2009-02-13T07:44:35Z<p>I have found a very simple example</p>
<pre><code>int v = gl.glCreateShader(GL.GL_VERTEX_SHADER);
int f = gl.glCreateShader(GL.GL_FRAGMENT_SHADER);
BufferedReader brv = new BufferedReader(new FileReader("vertexshader.glsl"));
String vsrc = "";
String line;
while ((line=brv.readLine()) != null) {
vsrc += line + "\n";
}
gl.glShaderSource(v, 1, vsrc, (int[])null);
gl.glCompileShader(v);
BufferedReader brf = new BufferedReader(new FileReader("fragmentshader.glsl"));
String fsrc = "";
String line;
while ((line=brf.readLine()) != null) {
fsrc += line + "\n";
}
gl.glShaderSource(f, 1, fsrc, (int[])null);
gl.glCompileShader(f);
int shaderprogram = gl.glCreateProgram();
gl.glAttachShader(shaderprogram, v);
gl.glAttachShader(shaderprogram, f);
gl.glLinkProgram(shaderprogram);
gl.glValidateProgram(shaderprogram);
gl.glUseProgram(shaderprogram);
</code></pre>
http://stackoverflow.com/questions/362833/catia-caa-catnavigbox-resize1CATIA-CAA CATNavigBox ResizeAlexander Stolz2008-12-12T14:00:36Z2009-02-10T14:58:54Z
<p>Is it possible to change the size of the treeview window after it has been visualized?</p>
<p>My code looks like this:</p>
<pre><code>_p2DNavViewer = NULL;
_p2DNavViewer = new CATNavigation2DViewer(this, "", CATDlgFraNoTitle | CATDlgWndNoDecoration |CATDlgWndChildMDI |CATDlgFraNoFrame, _width, _height);
_pNavigBox = new CATNavigBox(this, "", NULL, Indented, "CATINavigateObject_ForCAA2", 0, 0, _p2DNavViewer);
</code></pre>
<p><em>this</em> is the surrounding CATDlgContainer.</p>
<p>I can't find anything that would indicate that its possible, but CATIA is doing it so there has to be a way.
Im using CAAV5 R16.</p>
http://stackoverflow.com/questions/362833/catia-caa-catnavigbox-resize/532675#5326750Answer by Alexander Stolz for CATIA-CAA CATNavigBox ResizeAlexander Stolz2009-02-10T14:58:54Z2009-02-10T14:58:54Z<p>I don't know why it didn't work but now i've got it.
I'm catching a Resizecallback from the CATDlgContainer</p>
<pre><code> AddAnalyseNotificationCB(this,this->GetResizeNotification(),
(CATCommandMethod)&PROTrvTreeView::OnContainerResizeNotification,
NULL);
</code></pre>
<p>The catching method looks like this</p>
<pre><code>void PROTrvTreeView::OnContainerResizeNotification(CATCommand* cmd,
CATNotification* evt, CATCommandClientData data) {
DRECT * pRect = new DRECT();
GetRectDimensions(pRect);
if (pRect != NULL) {
_p2DNavViewer->SetRectDimensions(pRect->x,pRect->y, pRect->dy, pRect->dx);
}
delete pRect;
pRect = NULL;
}
</code></pre>
<p>So it was _p2DNavViewer->SetRectDimensions all along</p>
http://stackoverflow.com/questions/366432/extending-stdlist1Extending std::listAlexander Stolz2008-12-14T11:30:16Z2008-12-15T07:57:03Z
<p>I need to use lists for my program and needed to decide if I use std::vector or std::list.
The problem with vector is that there is no remove method and with list that there is no operator []. So I decided to write my own class extending std::list and overloading the [] operator.</p>
<p>My code looks like this:</p>
<pre><code>#include <list>
template <class T >
class myList : public std::list<T>
{
public:
T operator[](int index);
T operator[](int & index);
myList(void);
~myList(void);
};
#include "myList.h"
template<class T>
myList<T>::myList(void): std::list<T>() {}
template<class T>
myList<T>::~myList(void)
{
std::list<T>::~list();
}
template<class T>
T myList<T>::operator[](int index) {
int count = 0;
std::list<T>::iterator itr = this->begin();
while(count != index)itr++;
return *itr;
}
template<class T>
T myList<T>::operator[](int & index) {
int count = 0;
std::list<T>::iterator itr = this->begin();
while(count != index)itr++;
return *itr;
}
</code></pre>
<p>I can compile it but I get a linker error if I try to use it. Any ideas?</p>
http://stackoverflow.com/questions/340282/c-mystery10C++ MysteryAlexander Stolz2008-12-04T11:35:55Z2008-12-05T13:39:34Z
<p>Can someone explain to me why this code prints 14? I was just asked by another student and couldn't figure it out.</p>
<pre><code>int i = 5;
i = ++i + ++i;
cout<<i;
</code></pre>
http://stackoverflow.com/questions/271965/setting-mouse-position1Setting mouse positionAlexander Stolz2008-11-07T12:47:41Z2008-11-12T23:40:57Z
<p>Is there a function in glut which moves the mouse to a specific position?
There is a similar function in SDL (SDL_WarpMouse) but I want to stick to glut.</p>
http://stackoverflow.com/questions/825222/registering-a-upnp-device-using-microsoft-apis/825251#825251Comment by Alexander Stolz on Registering a UPnP Device using Microsoft API'sAlexander Stolz2009-10-25T13:14:41Z2009-10-25T13:14:41ZThat is a comment and not an answer to the question so you're right -1http://stackoverflow.com/questions/532780/catia-caa-catkeyboardevent/1291040#1291040Comment by Alexander Stolz on CATIA-CAA CATKeyboardEventAlexander Stolz2009-08-19T21:30:22Z2009-08-19T21:30:22ZNope I didn't get it to workhttp://stackoverflow.com/questions/1277604/fmj-webcam-capture-example/1277927#1277927Comment by Alexander Stolz on FMJ Webcam capture exampleAlexander Stolz2009-08-14T14:06:19Z2009-08-14T14:06:19ZI have a JMF example with the following problem <a href="http://stackoverflow.com/questions/1272018/painting-over-jmf-component" rel="nofollow" title="painting over jmf component">stackoverflow.com/questions/1272018/…</a>
Thats why I wanted to try FMJhttp://stackoverflow.com/questions/1277604/fmj-webcam-capture-example/1277833#1277833Comment by Alexander Stolz on FMJ Webcam capture exampleAlexander Stolz2009-08-14T13:53:43Z2009-08-14T13:53:43ZThere is only an example playing the moon landing but nothing capturing a webcamhttp://stackoverflow.com/questions/1133665/how-do-you-import-main-classes-in-test-classes-in-maven/1133719#1133719Comment by Alexander Stolz on How do you import main classes in test classes in Maven?Alexander Stolz2009-07-15T20:57:48Z2009-07-15T20:57:48ZOk I've found the error. The classes had wrong package declarations, a copy and paste error from migrating the project to mavenhttp://stackoverflow.com/questions/1133665/how-do-you-import-main-classes-in-test-classes-in-maven/1133719#1133719Comment by Alexander Stolz on How do you import main classes in test classes in Maven?Alexander Stolz2009-07-15T20:31:55Z2009-07-15T20:31:55ZThat's what I thought but the test doesn't compilehttp://stackoverflow.com/questions/648964/why-is-the-lift-web-framework-scalable/742124#742124Comment by Alexander Stolz on why is the lift web framework scalable?Alexander Stolz2009-06-30T14:41:44Z2009-06-30T14:41:44ZYou could accept it ;)http://stackoverflow.com/questions/1058408/is-it-bad-practice-to-send-an-actor-a-message-from-something-which-is-not-an-act/1060931#1060931Comment by Alexander Stolz on Is it bad practice to send an actor a message from something which is not an actor?Alexander Stolz2009-06-30T12:53:53Z2009-06-30T12:53:53ZOk you're right, didn't think about that. http://stackoverflow.com/questions/1053387/visual-studio-2010-beta-1-slow-on-64bits-windows7Comment by Alexander Stolz on visual studio 2010 beta 1 slow? on 64bits/windows7Alexander Stolz2009-06-27T18:45:56Z2009-06-27T18:45:56ZNot a programming question!http://stackoverflow.com/questions/1010739/help-with-project-euler-200/1018737#1018737Comment by Alexander Stolz on Help with Project Euler #200?Alexander Stolz2009-06-19T18:42:32Z2009-06-19T18:42:32ZI didn't mean that this is the source of the slowness. I meant that the problem why it didn't work the first time and then worked on a rerun could be that he is using isProbablePrimehttp://stackoverflow.com/questions/540906/scala-remote-actors/663431#663431Comment by Alexander Stolz on Scala remote actorsAlexander Stolz2009-06-16T07:28:03Z2009-06-16T07:28:03Zdmeister what happened to you blog?http://stackoverflow.com/questions/961944/overlapping-views-in-androidComment by Alexander Stolz on Overlapping Views in AndroidAlexander Stolz2009-06-07T20:45:54Z2009-06-07T20:45:54ZYes, the gallery is visibile without the overlay and I'm sure that the PNG is transparenthttp://stackoverflow.com/questions/824877/how-can-i-discover-whether-my-cpu-is-32-or-64-bitsComment by Alexander Stolz on How can I discover whether my CPU is 32 or 64 bits?Alexander Stolz2009-05-05T13:39:17Z2009-05-05T13:39:17ZNope not a programming question. should be closedhttp://stackoverflow.com/questions/27492/c-memory-managementComment by Alexander Stolz on C++ Memory managementAlexander Stolz2009-04-27T11:13:59Z2009-04-27T11:13:59ZFrom the documentation of the framework:
Do not use Templates.
They are not portable to different operating systems, especially in the way they are supported by compilers and link-editors.
That's currently all I can say about ithttp://stackoverflow.com/questions/725496/android-coverflow/726172#726172Comment by Alexander Stolz on Android coverflowAlexander Stolz2009-04-07T18:57:34Z2009-04-07T18:57:34ZGallery is awesome thanks I will use it +1