我怎样才能acheive的CoverFlow视图

我怎样才能acheive的CoverFlow视图

本文介绍了我怎样才能acheive的CoverFlow视图的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想实现与点布局溢出的观点。目前我使用polidea盖流动图书馆网址 [Github上] 。使用这个库的图像绘制的中心。

I want to achieve overflow view with dotted layout.Currently i am using polidea cover flow library URL [gitHub].Using this library images are drawn at center.

我要实现精确的用户界面是这样的。

I want to achieve exact UI like this.

请帮忙!

推荐答案

一个很好的做法是在给定的https://github.com/davidschreiber/FancyCoverFlow其中,

an excellent approach is given at https://github.com/davidschreiber/FancyCoverFlow where

FancyCoverFlow的Andr​​oid应用程序,可作为

FancyCoverFlow in Android app can be used as

fancyCoverFlow = new FancyCoverFlow(context);
fancyCoverFlow.setMaxRotation(45);
fancyCoverFlow.setUnselectedAlpha(0.3f);
fancyCoverFlow.setUnselectedSaturation(0.0f);
fancyCoverFlow.setUnselectedScale(0.4f);

您也可以膨胀FancyCoverFlow从XML:

You can also inflate FancyCoverFlow from 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" />

请访问也

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

这篇关于我怎样才能acheive的CoverFlow视图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-19 20:04