public class SimpleExample extends Activity {
// =============================================================================
// Child views
// =============================================================================
private FancyCoverFlow fancyCoverFlow;
// =============================================================================
// Supertype overrides
// =============================================================================
/**
* Called when the activity is first created.
*/
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
this.fancyCoverFlow = (FancyCoverFlow) this.findViewById(R.id.fancyCoverFlow);
this.fancyCoverFlow.setAdapter(new FancyCoverFlowSampleAdapter());
//透明度 0-255之间 或者0.0f---1.0f之间,数值越小透明度越高
this.fancyCoverFlow.setUnselectedAlpha(0.0f);
//未选中饱和度
this.fancyCoverFlow.setUnselectedSaturation(1);
//未选中规模
this.fancyCoverFlow.setUnselectedScale(0.5f);
//间距
this.fancyCoverFlow.setSpacing(45);
//进入旋转度数
this.fancyCoverFlow.setMaxRotation(0);
//下重力
this.fancyCoverFlow.setScaleDownGravity(0.2f);
// this.fancyCoverFlow.setScaleType(ImageView.ScaleType.FIT_CENTER);
this.fancyCoverFlow.setActionDistance(FancyCoverFlow.ACTION_DISTANCE_AUTO);
}
// =============================================================================
// Private classes
// =============================================================================
}