先看效果图:

自定义Gallery控件实现.

主要有4个文件,1个Layout,1个Activity,1个Adapter,1个Gallery

Activity:

public class ActivityMain extends Activity {public void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);                        setContentView(R.layout.layout_gallery);                Integer[] images = { R.drawable.img0001, R.drawable.img0030,                R.drawable.img0100, R.drawable.img0130, R.drawable.img0200,                R.drawable.img0230, R.drawable.img0300, R.drawable.img0330,                R.drawable.img0354 };                ImageAdapter adapter = new ImageAdapter(this, images);        adapter.createReflectedImages();        GalleryFlow galleryFlow = (GalleryFlow) findViewById(R.id.Gallery01);        galleryFlow.setAdapter(adapter);        }}

Gallery:

public class GalleryFlow extends Gallery {    private Camera mCamera = new Camera();    private int mMaxRotationAngle = 60;    private int mMaxZoom = -120;    private int mCoveflowCenter;    public GalleryFlow(Context context) {            super(context);            this.setStaticTransformationsEnabled(true);    }    public GalleryFlow(Context context, AttributeSet attrs) {            super(context, attrs);            this.setStaticTransformationsEnabled(true);    }    public GalleryFlow(Context context, AttributeSet attrs, int defStyle) {            super(context, attrs, defStyle);            this.setStaticTransformationsEnabled(true);    }        public int getMaxRotationAngle() {            return mMaxRotationAngle;    }    public void setMaxRotationAngle(int maxRotationAngle) {            mMaxRotationAngle = maxRotationAngle;    }    public int getMaxZoom() {            return mMaxZoom;    }    public void setMaxZoom(int maxZoom) {            mMaxZoom = maxZoom;    }    private int getCenterOfCoverflow() {            return (getWidth() - getPaddingLeft() - getPaddingRight()) / 2                            + getPaddingLeft();    }    private static int getCenterOfView(View view) {            return view.getLeft() + view.getWidth() / 2;    }        @Override    protected boolean getChildStaticTransformation(View child, Transformation t) {            final int childCenter = getCenterOfView(child);            final int childWidth = child.getWidth();            int rotationAngle = 0;            t.clear();            t.setTransformationType(Transformation.TYPE_MATRIX);            if (childCenter == mCoveflowCenter) {                    transformImageBitmap((ImageView) child, t, 0);            } else {                    rotationAngle = (int) (((float) (mCoveflowCenter - childCenter) / childWidth) * mMaxRotationAngle);                    if (Math.abs(rotationAngle) > mMaxRotationAngle) {                            rotationAngle = (rotationAngle < 0) ? -mMaxRotationAngle                                            : mMaxRotationAngle;                    }                    transformImageBitmap((ImageView) child, t, rotationAngle);            }            return true;    }        @Override    protected void onSizeChanged(int w, int h, int oldw, int oldh) {            mCoveflowCenter = getCenterOfCoverflow();            super.onSizeChanged(w, h, oldw, oldh);    }     private void transformImageBitmap(ImageView child, Transformation t,                    int rotationAngle) {            mCamera.save();            final Matrix imageMatrix = t.getMatrix();            final int imageHeight = child.getLayoutParams().height;            final int imageWidth = child.getLayoutParams().width;            final int rotation = Math.abs(rotationAngle);            // 在Z轴上正向移动camera的视角,实际效果为放大图片。            // 如果在Y轴上移动,则图片上下移动;X轴上对应图片左右移动。            mCamera.translate(0.0f, 0.0f, 100.0f);            // As the angle of the view gets less, zoom in            if (rotation < mMaxRotationAngle) {                    float zoomAmount = (float) (mMaxZoom + (rotation * 1.5));                    mCamera.translate(0.0f, 0.0f, zoomAmount);            }            // 在Y轴上旋转,对应图片竖向向里翻转。            // 如果在X轴上旋转,则对应图片横向向里翻转。            mCamera.rotateY(rotationAngle);            mCamera.getMatrix(imageMatrix);            imageMatrix.preTranslate(-(imageWidth / 2), -(imageHeight / 2));            imageMatrix.postTranslate((imageWidth / 2), (imageHeight / 2));            mCamera.restore();    }}

Adapter:

public class ImageAdapter extends BaseAdapter {int mGalleryItemBackground;private Context mContext;private Integer[] mImageIds;private ImageView[] mImages;public ImageAdapter(Context c, Integer[] ImageIds) {mContext = c;mImageIds = ImageIds;mImages = new ImageView[mImageIds.length];}public boolean createReflectedImages() {final int reflectionGap = 4;int index = 0;for (int imageId : mImageIds) {Bitmap originalImage = BitmapFactory.decodeResource(mContext.getResources(), imageId);int width = originalImage.getWidth();int height = originalImage.getHeight();Matrix matrix = new Matrix();matrix.preScale(1, -1);Bitmap reflectionImage = Bitmap.createBitmap(originalImage, 0,height / 2, width, height / 2, matrix, false);Bitmap bitmapWithReflection = Bitmap.createBitmap(width,(height + height / 2), Config.ARGB_8888);Canvas canvas = new Canvas(bitmapWithReflection);canvas.drawBitmap(originalImage, 0, 0, null);Paint deafaultPaint = new Paint();canvas.drawRect(0, height, width, height + reflectionGap,deafaultPaint);canvas.drawBitmap(reflectionImage, 0, height + reflectionGap, null);Paint paint = new Paint();LinearGradient shader = new LinearGradient(0, originalImage.getHeight(), 0, bitmapWithReflection.getHeight()+ reflectionGap, 0x70ffffff, 0x00ffffff, TileMode.CLAMP);paint.setShader(shader);paint.setXfermode(new PorterDuffXfermode(Mode.DST_IN));canvas.drawRect(0, height, width, bitmapWithReflection.getHeight()+ reflectionGap, paint);ImageView imageView = new ImageView(mContext);imageView.setImageBitmap(bitmapWithReflection);imageView.setLayoutParams(new GalleryFlow.LayoutParams(180, 240));//imageView.setScaleType(ScaleType.MATRIX);mImages[index++] = imageView;}return true;}private Resources getResources() {// TODO Auto-generated method stubreturn null;}public int getCount() {return mImageIds.length;}public Object getItem(int position) {return position;}public long getItemId(int position) {return position;}public View getView(int position, View convertView, ViewGroup parent) {return mImages[position];}public float getScale(boolean focused, int offset) {return Math.max(0, 1.0f / (float) Math.pow(2, Math.abs(offset)));}}

  

gallery在拖动图片过程中,会不断调用getChildStaticTransformation 方法,在该方法中,用Camera实现Z轴旋转。

 

更多相关文章

  1. Android(安卓)GMS module测试方法
  2. 说说 Android(安卓)的 Material Design 设计(四)——卡片式布局
  3. Android调用camera错误setParameters failed深层解析
  4. android NDK学习篇5之hello-jni——jni中头文件的自动生成
  5. Android触摸事件(三)-触摸事件类使用实例
  6. Webview之H5页面调用android的图库及文件管理
  7. repo下载android出现fatal: Unable to find remote helper for '
  8. Android处理图像数据转换的各种方法
  9. Android(安卓)开发过程中遇到的问题Error:Execution failed for

随机推荐

  1. 浅谈easy-mock 最好的备胎没有之一
  2. 谁要是再敢用Map传参,我过去就是一JIO
  3. 不瞒你说,我最近跟Java源码杠上了
  4. 听说程序猿不会撩妹,我笑了
  5. immutability-helper因React官方出镜,而被
  6. 万圣节带你一起去鬼混!
  7. webpack4配置详解之常用插件分享
  8. 全民抵制“辱华”品牌秀,D&G神回复:呵呵~ 那
  9. 面对裁员,你还敢说老了真学不动了吗?
  10. 我的本科回忆录:从迷茫自卑到保送华科