使用Android自带Gallery组件实现CoverFlow,源码+解析

首先声明,源代码转载自国外Neil Davies,使用Apache2.0开源协议,请使用源代码的人自觉遵守协议内容。
本文为Kearnel原创,转载请注明出处。

以下是正文:

使用过Android自带的gallery组件的人都知道,gallery实现的效果就是拖动浏览一组图片,相比iphone里也是用于拖动浏览图片的coverflow,显然逊色不少。实际上,可以通过扩展gallery,通过伪3D变换可以基本实现coverflow的效果。本文通过源代码解析这一功能的实现。具体代码作用可参照注释。

最终实现效果如下:

2.jpg



要使用gallery,我们必须首先给其指定一个adapter。在这里,我们实现了一个自定义的ImageAdapter,为图片制作倒影效果。
传入参数为context和程序内drawable中的图片ID数组。之后调用其中的createReflectedImages()方法分别创造每一个图像的倒影效果,生成对应的ImageView数组,最后在getView()中返回。
  1. /*
  2. * Copyright (C) 2010 Neil Davies
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. *
  16. * This code is base on the Android Gallery widget and was Created
  17. * by Neil Davies neild001 'at' gmail dot com to be a Coverflow widget
  18. *
  19. * @author Neil Davies
  20. */
  21. public class ImageAdapter extends BaseAdapter {
  22. int mGalleryItemBackground;
  23. private Context mContext;

  24. private Integer[] mImageIds ;

  25. private ImageView[] mImages;

  26. public ImageAdapter(Context c, int[] ImageIds) {
  27. mContext = c;
  28. mImageIds = ImageIds;
  29. mImages = new ImageView[mImageIds.length];
  30. }

  31. public boolean createReflectedImages() {
  32. // The gap we want between the reflection and the original image
  33. final int reflectionGap = 4;

  34. int index = 0;
  35. for (int imageId : mImageIds) {
  36. Bitmap originalImage = BitmapFactory.decodeResource(
  37. mContext.getResources(), imageId);
  38. int width = originalImage.getWidth();
  39. int height = originalImage.getHeight();

  40. // This will not scale but will flip on the Y axis
  41. Matrix matrix = new Matrix();
  42. matrix.preScale(1, -1);

  43. // Create a Bitmap with the flip matrix applied to it.
  44. // We only want the bottom half of the image
  45. Bitmap reflectionImage = Bitmap.createBitmap(originalImage, 0,
  46. height / 2, width, height / 2, matrix, false);

  47. // Create a new bitmap with same width but taller to fit
  48. // reflection
  49. Bitmap bitmapWithReflection = Bitmap.createBitmap(width,
  50. (height + height / 2), Config.ARGB_8888);

  51. // Create a new Canvas with the bitmap that's big enough for
  52. // the image plus gap plus reflection
  53. Canvas canvas = new Canvas(bitmapWithReflection);
  54. // Draw in the original image
  55. canvas.drawBitmap(originalImage, 0, 0, null);
  56. // Draw in the gap
  57. Paint deafaultPaint = new Paint();
  58. canvas.drawRect(0, height, width, height + reflectionGap,
  59. deafaultPaint);
  60. // Draw in the reflection
  61. canvas.drawBitmap(reflectionImage, 0, height + reflectionGap,
  62. null);

  63. // Create a shader that is a linear gradient that covers the
  64. // reflection
  65. Paint paint = new Paint();
  66. LinearGradient shader = new LinearGradient(0,
  67. originalImage.getHeight(), 0,
  68. bitmapWithReflection.getHeight() + reflectionGap,
  69. 0x70ffffff, 0x00ffffff, TileMode.CLAMP);
  70. // Set the paint to use this shader (linear gradient)
  71. paint.setShader(shader);
  72. // Set the Transfer mode to be porter duff and destination in
  73. paint.setXfermode(new PorterDuffXfermode(Mode.DST_IN));
  74. // Draw a rectangle using the paint with our linear gradient
  75. canvas.drawRect(0, height, width,
  76. bitmapWithReflection.getHeight() + reflectionGap, paint);

  77. ImageView imageView = new ImageView(mContext);
  78. imageView.setImageBitmap(bitmapWithReflection);
  79. imageView
  80. .setLayoutParams(new GalleryFlow.LayoutParams(160, 240));
  81. // imageView.setScaleType(ScaleType.MATRIX);
  82. mImages[index++] = imageView;

  83. }
  84. return true;
  85. }

  86. public int getCount() {
  87. return mImageIds.length;
  88. }

  89. public Object getItem(int position) {
  90. return position;
  91. }

  92. public long getItemId(int position) {
  93. return position;
  94. }

  95. public View getView(int position, View convertView, ViewGroup parent) {

  96. // Use this code if you want to load from resources
  97. /*
  98. * ImageView i = new ImageView(mContext);
  99. * i.setImageResource(mImageIds[position]); i.setLayoutParams(new
  100. * CoverFlow.LayoutParams(350,350));
  101. * i.setScaleType(ImageView.ScaleType.CENTER_INSIDE);
  102. *
  103. * //Make sure we set anti-aliasing otherwise we get jaggies
  104. * BitmapDrawable drawable = (BitmapDrawable) i.getDrawable();
  105. * drawable.setAntiAlias(true); return i;
  106. */

  107. return mImages[position];
  108. }

  109. /**
  110. * Returns the size (0.0f to 1.0f) of the views depending on the
  111. * 'offset' to the center.
  112. */
  113. public float getScale(boolean focused, int offset) {
  114. /* Formula: 1 / (2 ^ offset) */
  115. return Math.max(0, 1.0f / (float) Math.pow(2, Math.abs(offset)));
  116. }

  117. }
  118. }
复制代码
仅仅实现了图片的倒影效果还不够,因为在coverflow中图片切换是有旋转和缩放效果的,而自带的gallery中并没有实现。因此,我们扩展自带的gallery,实现自己的galleryflow。在原gallery类中,提供了一个方法getChildStaticTransformation()以实现对图片的变换。我们通过覆写这个方法并在其中调用自定义的transformImageBitmap(“每个图片与gallery中心的距离”)方法,,即可实现每个图片做相应的旋转和缩放。其中使用了camera和matrix用于视图变换。具体可参考代码注释。
  1. public class GalleryFlow extends Gallery {

  2.         /**
  3.          * Graphics Camera used for transforming the matrix of ImageViews
  4.          */
  5.         private Camera mCamera = new Camera();

  6.         /**
  7.          * The maximum angle the Child ImageView will be rotated by
  8.          */
  9.         private int mMaxRotationAngle = 60;

  10.         /**
  11.          * The maximum zoom on the centre Child
  12.          */
  13.         private int mMaxZoom = -120;

  14.         /**
  15.          * The Centre of the Coverflow
  16.          */
  17.         private int mCoveflowCenter;

  18.         public GalleryFlow(Context context) {
  19.                 super(context);
  20.                 this.setStaticTransformationsEnabled(true);
  21.         }

  22.         public GalleryFlow(Context context, AttributeSet attrs) {
  23.                 super(context, attrs);
  24.                 this.setStaticTransformationsEnabled(true);
  25.         }

  26.         public GalleryFlow(Context context, AttributeSet attrs, int defStyle) {
  27.                 super(context, attrs, defStyle);
  28.                 this.setStaticTransformationsEnabled(true);
  29.         }

  30.         /**
  31.          * Get the max rotational angle of the image
  32.          *
  33.          * @return the mMaxRotationAngle
  34.          */
  35.         public int getMaxRotationAngle() {
  36.                 return mMaxRotationAngle;
  37.         }

  38.         /**
  39.          * Set the max rotational angle of each image
  40.          *
  41.          * @param maxRotationAngle
  42.          *            the mMaxRotationAngle to set
  43.          */
  44.         public void setMaxRotationAngle(int maxRotationAngle) {
  45.                 mMaxRotationAngle = maxRotationAngle;
  46.         }

  47.         /**
  48.          * Get the Max zoom of the centre image
  49.          *
  50.          * @return the mMaxZoom
  51.          */
  52.         public int getMaxZoom() {
  53.                 return mMaxZoom;
  54.         }

  55.         /**
  56.          * Set the max zoom of the centre image
  57.          *
  58.          * @param maxZoom
  59.          *            the mMaxZoom to set
  60.          */
  61.         public void setMaxZoom(int maxZoom) {
  62.                 mMaxZoom = maxZoom;
  63.         }

  64.         /**
  65.          * Get the Centre of the Coverflow
  66.          *
  67.          * @return The centre of this Coverflow.
  68.          */
  69.         private int getCenterOfCoverflow() {
  70.                 return (getWidth() - getPaddingLeft() - getPaddingRight()) / 2
  71.                                 + getPaddingLeft();
  72.         }

  73.         /**
  74.          * Get the Centre of the View
  75.          *
  76.          * @return The centre of the given view.
  77.          */
  78.         private static int getCenterOfView(View view) {
  79.                 return view.getLeft() + view.getWidth() / 2;
  80.         }

  81.         /**
  82.          * {@inheritDoc}
  83.          *
  84.          * @see #setStaticTransformationsEnabled(boolean)
  85.          */
  86.         protected boolean getChildStaticTransformation(View child, Transformation t) {

  87.                 final int childCenter = getCenterOfView(child);
  88.                 final int childWidth = child.getWidth();
  89.                 int rotationAngle = 0;

  90.                 t.clear();
  91.                 t.setTransformationType(Transformation.TYPE_MATRIX);

  92.                 if (childCenter == mCoveflowCenter) {
  93.                         transformImageBitmap((ImageView) child, t, 0);
  94.                 } else {
  95.                         rotationAngle = (int) (((float) (mCoveflowCenter - childCenter) / childWidth) * mMaxRotationAngle);
  96.                         if (Math.abs(rotationAngle) > mMaxRotationAngle) {
  97.                                 rotationAngle = (rotationAngle < 0) ? -mMaxRotationAngle
  98.                                                 : mMaxRotationAngle;
  99.                         }
  100.                         transformImageBitmap((ImageView) child, t, rotationAngle);
  101.                 }

  102.                 return true;
  103.         }

  104.         /**
  105.          * This is called during layout when the size of this view has changed. If
  106.          * you were just added to the view hierarchy, you're called with the old
  107.          * values of 0.
  108.          *
  109.          * @param w
  110.          *            Current width of this view.
  111.          * @param h
  112.          *            Current height of this view.
  113.          * @param oldw
  114.          *            Old width of this view.
  115.          * @param oldh
  116.          *            Old height of this view.
  117.          */
  118.         protected void onSizeChanged(int w, int h, int oldw, int oldh) {
  119.                 mCoveflowCenter = getCenterOfCoverflow();
  120.                 super.onSizeChanged(w, h, oldw, oldh);
  121.         }

  122.         /**
  123.          * Transform the Image Bitmap by the Angle passed
  124.          *
  125.          * @param imageView
  126.          *            ImageView the ImageView whose bitmap we want to rotate
  127.          * @param t
  128.          *            transformation
  129.          * @param rotationAngle
  130.          *            the Angle by which to rotate the Bitmap
  131.          */
  132.         private void transformImageBitmap(ImageView child, Transformation t,
  133.                         int rotationAngle) {
  134.                 mCamera.save();
  135.                 final Matrix imageMatrix = t.getMatrix();
  136.                 final int imageHeight = child.getLayoutParams().height;
  137.                 final int imageWidth = child.getLayoutParams().width;
  138.                 final int rotation = Math.abs(rotationAngle);

  139.                 // 在Z轴上正向移动camera的视角,实际效果为放大图片。
  140.                 // 如果在Y轴上移动,则图片上下移动;X轴上对应图片左右移动。
  141.                 mCamera.translate(0.0f, 0.0f, 100.0f);

  142.                 // As the angle of the view gets less, zoom in
  143.                 if (rotation < mMaxRotationAngle) {
  144.                         float zoomAmount = (float) (mMaxZoom + (rotation * 1.5));
  145.                         mCamera.translate(0.0f, 0.0f, zoomAmount);
  146.                 }

  147.                 // 在Y轴上旋转,对应图片竖向向里翻转。
  148.                 // 如果在X轴上旋转,则对应图片横向向里翻转。
  149.                 mCamera.rotateY(rotationAngle);
  150.                 mCamera.getMatrix(imageMatrix);
  151.                 imageMatrix.preTranslate(-(imageWidth / 2), -(imageHeight / 2));
  152.                 imageMatrix.postTranslate((imageWidth / 2), (imageHeight / 2));
  153.                 mCamera.restore();
  154.         }
  155. }
复制代码
代码到这里就结束了。有兴趣的话可以自行调整里面的参数来实现更多更炫的效果。
下面是调用的示例:
  1. public void onCreate(Bundle savedInstanceState) {
  2.                 super.onCreate(savedInstanceState);
  3.                
  4.                
  5.                 setContentView(R.layout.layout_gallery);
  6.                
  7.                 Integer[] images = { R.drawable.img0001, R.drawable.img0030,
  8.                         R.drawable.img0100, R.drawable.img0130, R.drawable.img0200,
  9.                         R.drawable.img0230, R.drawable.img0300, R.drawable.img0330,
  10.                         R.drawable.img0354 };
  11.                
  12.                 ImageAdapter adapter = new ImageAdapter(this, images);
  13.                 adapter.createReflectedImages();

  14.                 GalleryFlow galleryFlow = (GalleryFlow) findViewById(R.id.gallery_flow);
  15.                 galleryFlow.setAdapter(adapter);
  16.                
  17.         }
复制代码
PS1:
可以看出来这样实现的gallery锯齿问题比较严重。可以在createReflectedImages()使用以下代码:
  1. BitmapDrawable bd = new BitmapDrawable(bitmapWithReflection);
  2. bd.setAntiAlias(true);
  3. ...
复制代码
然后用iv.setImageDrawable(bd);
代替iv.setImageBitmap(bitmapWithReflection);
即可基本消除锯齿。

PS2:
ImageAdapter有待确定的MemoryLeak问题,貌似的Bitmap的decode方法会造成ML,使用ImageAdapter时多次旋转屏幕后会出现OOM。目前可以通过将使用完毕的bimap调用recycle()方法和设置null并及时调用system.gc()得到一些改善,但是问题并不明显。

庆祝精华和推荐,增加3个PS~

PS3 ON PS1:
256楼说到,为什么开启抗锯齿后不明显。答案是,锯齿不可能完全消除,但开启抗锯齿后会有很大改善。
另外还说到为什么android不默认开启锯齿,以下是我的一点想法:
插值是我现在所知道的抗锯齿的算法,也就是计算像素间的相关度对其间插入中间像素以达到平滑图像边缘的效果。但这无疑会耗费了大量的运算。
虽然我没有经过测试,但是我猜测,使用antialias后图形性能至少会下降30%。
当然,在这里没有涉及到复杂的图形运算,所以开启抗锯齿不会有很明显的性能影响,但如果你在模拟器或者低端机型上测试就会发现一点问题。


PS4:
有人问到transformImageBitmap()中这俩句话是什么意思:
    imageMatrix.preTranslate(-(imageWidth / 2), -(imageHeight / 2));
    imageMatrix.postTranslate((imageWidth / 2), (imageHeight / 2));
个人的理解如下:
preTranslate相当于在对图像进行任何矩阵变换前先进行preTranslate,postTranslate相反,进行所有变换后再执行postTranlate。
这俩句的意思是:在做任何变换前,先将整个图像从图像的中心点移动到原点((0,0)点),执行变换完毕后再将图像从原点移动到之前的中心点。
如果不加这俩句,任何变换将以图像的原点为变换中心点,加了之后,任何变换都将以图像的中心点为变换中心点。
举个例子,对图像进行旋转,需要俩个参数:一个是旋转的角度,另一个是旋转中心的坐标。旋转中心的坐标影响旋转的效果。这个能明白吗?你拿一根棍子,拿着棍子的一端进行旋转和拿在棍子中间旋转,是不一样的。preTranslate和postTranslate执行后对图像本身不会有影响,影响的是对图像进行变换时的旋转轴。
说了这么多有点绕,其实就是矩阵变换的知识。


PS5 ON PS2:
这个问题在google group下有过很充分的讨论,貌似一般只在debug模式下存在。现在我使用这段代码没有出现OOM问题了。
1.jpg
2011-8-30 23:39 上传
下载附件(31.8 KB)

Gallery.rar(737.16 KB, 下载次数: 3057)
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值