How to create listview like this in android 1.6 or 2 (because of renderscript, which works only in 3 or later, but I need list to work on almost all androids):

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I used
Camera.setTranslate(x, 0, z)in drawChild, where changed x position for rotation virtualization and z for overlaping. Then there was problem with overlapping, because last item was on top and first on bottom layer. So, inonCreate()method calledthis.setChildrenDrawingOrderEnabled(true)and overridenprotected int getChildDrawingOrder (int childCount, int i) {}where I could change order for middle and later rows.This idea was given by Renard, who suggested me in other my post about almost same thing here.
My getChildDrawingOrder(int, int) implementation to get overlapping I need:
I hope this post will help someone in future
Screenshot is actually almost the same as I mentioned in my question. I used alpha, so overlayed items is a little bit see-through: