Skip to main content

Posts

Showing posts from December, 2016

Android ListView Item 360 Degree 3D Rotation

main.xml : <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"     android:orientation="vertical"     android:layout_width="fill_parent"     android:layout_height="fill_parent"     > <TextView      android:layout_width="fill_parent"     android:layout_height="wrap_content"     android:text="Hello Smit Modi"     android:textColor="?attr/ColorPrimary"     /> <ListView     android:id = "@+id/smit_list"     android:layout_width="fill_parent"     android:layout_height="fill_parent"     android:background="?attr/ColorPrimary"     /> </LinearLayout> ListAnimation.java : package com.smit.ListAnimation; import com. smit .ListAnimation.*; import com. smit .ListAnimation.Rotate3dAnimation; import android.app.Activity; import android.os.Bundle; im...