android - How can i achieve CoverFlow view -


i want achieve overflow view dotted layout. using polidea cover flow library url [github]. using library images drawn @ center.

i want achieve exact ui this.

an excellent approach given @ https://github.com/davidschreiber/fancycoverflow where

fancycoverflow in android app can used as

fancycoverflow = new fancycoverflow(context); fancycoverflow.setmaxrotation(45); fancycoverflow.setunselectedalpha(0.3f); fancycoverflow.setunselectedsaturation(0.0f); fancycoverflow.setunselectedscale(0.4f); 

you can inflate fancycoverflow xml:

<at.technikum.mti.fancycoverflow.fancycoverflow         android:layout_width="match_parent"         android:layout_height="match_parent"         fcf:maxrotation="45"         fcf:unselectedalpha="0.3"         fcf:unselectedsaturation="0.0"         fcf:unselectedscale="0.4" /> 

please visit also

1)https://github.com/deepwinter/android-coverflow

2)https://github.com/i7an/cover-flow-android

3)https://github.com/driventokill/android-coverflow

4)https://github.com/helgeplaschke/android-cover-flow-widget

5)https://github.com/missingfeature/android-coverflow


Comments

Popular posts from this blog

java - Intellij Synchronizing output directories .. -

git - Initial Commit: "fatal: could not create leading directories of ..." -