User Alexander Stolz - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T22:01:55Z http://stackoverflow.com/feeds/user/2450 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1893072/getting-frames-from-video-image-in-android 0 Getting frames from Video Image in Android Alexander Stolz 2009-12-12T11:09:04Z 2009-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-flushing 0 DataOutputStream not flushing Alexander Stolz 2009-12-05T13:43:54Z 2009-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-windows 0 Virtual Devices in Windows Alexander Stolz 2009-10-23T10:19:30Z 2009-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-programming 3 Jogl Shader programming Alexander Stolz 2009-01-09T14:29:31Z 2009-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-example 0 FMJ Webcam capture example Alexander Stolz 2009-08-14T12:32:16Z 2009-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-catkeyboardevent 1 CATIA-CAA CATKeyboardEvent Alexander Stolz 2009-02-10T15:25:16Z 2009-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()-&gt;GetCurrentWindow()-&gt;GetViewer(), CATKeyboardEvent::ClassName(), (CATCommandMethod)&amp;PROTrvTreeView::OnKeyboardEvent, NULL); void PROTrvTreeView::OnKeyboardEvent(CATCommand * ipCmd, CATNotification * ipEvt, CATCommandClientData iobjData) { cout&lt;&lt; "KeyboardEvent" &lt;&lt;endl; } </code></pre> <p>Anyone any idea?</p> http://stackoverflow.com/questions/1272018/painting-over-jmf-component 0 Painting over JMF component Alexander Stolz 2009-08-13T13:39:48Z 2009-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#1278230 0 Answer by Alexander Stolz for Painting over JMF component Alexander Stolz 2009-08-14T14:36:04Z 2009-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-stream 0 Reading and writing on webcam stream Alexander Stolz 2009-08-13T08:29:04Z 2009-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-greasemonkey 2 Allowing framing on Stackoverflow with Greasemonkey [closed] Alexander Stolz 2009-08-01T06:56:52Z 2009-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-maven 1 How do you import main classes in test classes in Maven? Alexander Stolz 2009-07-15T20:07:27Z 2009-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-eclipse 2 How to get the project name in eclipse? Alexander Stolz 2009-07-30T11:48:53Z 2009-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#1152266 1 Answer by Alexander Stolz for java.lang.NoSuchMethodError: main when starting HelloWorld with Eclipse Scala plugin Alexander Stolz 2009-07-20T08:15:09Z 2009-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#1084716 10 Answer by Alexander Stolz for Mixing Multiple Traits in Scala Alexander Stolz 2009-07-05T19:58:08Z 2009-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#1078441 0 Answer by Alexander Stolz for How to check if the given string is palindrome? Alexander Stolz 2009-07-03T08:53:44Z 2009-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#1060931 0 Answer by Alexander Stolz for Is it bad practice to send an actor a message from something which is not an actor? Alexander Stolz 2009-06-29T22:39:31Z 2009-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#1049127 0 Answer by Alexander Stolz for how can I write applications in C or C++ for Android? Alexander Stolz 2009-06-26T13:28:14Z 2009-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-executable 7 Lisp Executable Alexander Stolz 2008-08-24T13:42:35Z 2009-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#1018737 0 Answer by Alexander Stolz for Help with Project Euler #200? Alexander Stolz 2009-06-19T15:56:38Z 2009-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-android 3 Overlapping Views in Android Alexander Stolz 2009-06-07T14:10:20Z 2009-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>&lt;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" &gt; &lt;Gallery android:id="@+id/overview" android:layout_width="fill_parent" android:layout_height="wrap_content" /&gt; &lt;ImageView android:id="@+id/navigmaske" android:layout_width="fill_parent" android:layout_height="wrap_content" android:src="@drawable/navigmask" /&gt; &lt;/RelativeLayout&gt; </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>&lt;item name="android:background"&gt;#FF000000&lt;/item&gt; </code></pre> <p>to this</p> <pre><code>&lt;item name="android:background"&gt;#00000000&lt;/item&gt; </code></pre> http://stackoverflow.com/questions/989233/actor-model-advantages-to-shared-state 0 Actor Model advantages to shared state Alexander Stolz 2009-06-12T21:49:44Z 2009-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-coverflow 1 Android coverflow Alexander Stolz 2009-04-07T12:40:20Z 2009-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-actors 2 Scala remote actors Alexander Stolz 2009-02-12T11:25:34Z 2009-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-management 6 Latex=>PDF Rights management Alexander Stolz 2008-08-26T06:24:16Z 2009-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#545083 3 Answer by Alexander Stolz for Jogl Shader programming Alexander Stolz 2009-02-13T07:44:35Z 2009-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-resize 1 CATIA-CAA CATNavigBox Resize Alexander Stolz 2008-12-12T14:00:36Z 2009-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#532675 0 Answer by Alexander Stolz for CATIA-CAA CATNavigBox Resize Alexander Stolz 2009-02-10T14:58:54Z 2009-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-&gt;GetResizeNotification(), (CATCommandMethod)&amp;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-&gt;SetRectDimensions(pRect-&gt;x,pRect-&gt;y, pRect-&gt;dy, pRect-&gt;dx); } delete pRect; pRect = NULL; } </code></pre> <p>So it was _p2DNavViewer->SetRectDimensions all along</p> http://stackoverflow.com/questions/366432/extending-stdlist 1 Extending std::list Alexander Stolz 2008-12-14T11:30:16Z 2008-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 &lt;list&gt; template &lt;class T &gt; class myList : public std::list&lt;T&gt; { public: T operator[](int index); T operator[](int &amp; index); myList(void); ~myList(void); }; #include "myList.h" template&lt;class T&gt; myList&lt;T&gt;::myList(void): std::list&lt;T&gt;() {} template&lt;class T&gt; myList&lt;T&gt;::~myList(void) { std::list&lt;T&gt;::~list(); } template&lt;class T&gt; T myList&lt;T&gt;::operator[](int index) { int count = 0; std::list&lt;T&gt;::iterator itr = this-&gt;begin(); while(count != index)itr++; return *itr; } template&lt;class T&gt; T myList&lt;T&gt;::operator[](int &amp; index) { int count = 0; std::list&lt;T&gt;::iterator itr = this-&gt;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-mystery 10 C++ Mystery Alexander Stolz 2008-12-04T11:35:55Z 2008-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&lt;&lt;i; </code></pre> http://stackoverflow.com/questions/271965/setting-mouse-position 1 Setting mouse position Alexander Stolz 2008-11-07T12:47:41Z 2008-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#825251 Comment by Alexander Stolz on Registering a UPnP Device using Microsoft API's Alexander Stolz 2009-10-25T13:14:41Z 2009-10-25T13:14:41Z That is a comment and not an answer to the question so you're right -1 http://stackoverflow.com/questions/532780/catia-caa-catkeyboardevent/1291040#1291040 Comment by Alexander Stolz on CATIA-CAA CATKeyboardEvent Alexander Stolz 2009-08-19T21:30:22Z 2009-08-19T21:30:22Z Nope I didn't get it to work http://stackoverflow.com/questions/1277604/fmj-webcam-capture-example/1277927#1277927 Comment by Alexander Stolz on FMJ Webcam capture example Alexander Stolz 2009-08-14T14:06:19Z 2009-08-14T14:06:19Z I 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/&hellip;</a> Thats why I wanted to try FMJ http://stackoverflow.com/questions/1277604/fmj-webcam-capture-example/1277833#1277833 Comment by Alexander Stolz on FMJ Webcam capture example Alexander Stolz 2009-08-14T13:53:43Z 2009-08-14T13:53:43Z There is only an example playing the moon landing but nothing capturing a webcam http://stackoverflow.com/questions/1133665/how-do-you-import-main-classes-in-test-classes-in-maven/1133719#1133719 Comment by Alexander Stolz on How do you import main classes in test classes in Maven? Alexander Stolz 2009-07-15T20:57:48Z 2009-07-15T20:57:48Z Ok I've found the error. The classes had wrong package declarations, a copy and paste error from migrating the project to maven http://stackoverflow.com/questions/1133665/how-do-you-import-main-classes-in-test-classes-in-maven/1133719#1133719 Comment by Alexander Stolz on How do you import main classes in test classes in Maven? Alexander Stolz 2009-07-15T20:31:55Z 2009-07-15T20:31:55Z That's what I thought but the test doesn't compile http://stackoverflow.com/questions/648964/why-is-the-lift-web-framework-scalable/742124#742124 Comment by Alexander Stolz on why is the lift web framework scalable? Alexander Stolz 2009-06-30T14:41:44Z 2009-06-30T14:41:44Z You 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#1060931 Comment by Alexander Stolz on Is it bad practice to send an actor a message from something which is not an actor? Alexander Stolz 2009-06-30T12:53:53Z 2009-06-30T12:53:53Z Ok you're right, didn't think about that. http://stackoverflow.com/questions/1053387/visual-studio-2010-beta-1-slow-on-64bits-windows7 Comment by Alexander Stolz on visual studio 2010 beta 1 slow? on 64bits/windows7 Alexander Stolz 2009-06-27T18:45:56Z 2009-06-27T18:45:56Z Not a programming question! http://stackoverflow.com/questions/1010739/help-with-project-euler-200/1018737#1018737 Comment by Alexander Stolz on Help with Project Euler #200? Alexander Stolz 2009-06-19T18:42:32Z 2009-06-19T18:42:32Z I 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 isProbablePrime http://stackoverflow.com/questions/540906/scala-remote-actors/663431#663431 Comment by Alexander Stolz on Scala remote actors Alexander Stolz 2009-06-16T07:28:03Z 2009-06-16T07:28:03Z dmeister what happened to you blog? http://stackoverflow.com/questions/961944/overlapping-views-in-android Comment by Alexander Stolz on Overlapping Views in Android Alexander Stolz 2009-06-07T20:45:54Z 2009-06-07T20:45:54Z Yes, the gallery is visibile without the overlay and I'm sure that the PNG is transparent http://stackoverflow.com/questions/824877/how-can-i-discover-whether-my-cpu-is-32-or-64-bits Comment by Alexander Stolz on How can I discover whether my CPU is 32 or 64 bits? Alexander Stolz 2009-05-05T13:39:17Z 2009-05-05T13:39:17Z Nope not a programming question. should be closed http://stackoverflow.com/questions/27492/c-memory-management Comment by Alexander Stolz on C++ Memory management Alexander Stolz 2009-04-27T11:13:59Z 2009-04-27T11:13:59Z From 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 it http://stackoverflow.com/questions/725496/android-coverflow/726172#726172 Comment by Alexander Stolz on Android coverflow Alexander Stolz 2009-04-07T18:57:34Z 2009-04-07T18:57:34Z Gallery is awesome thanks I will use it +1