import android.content.Context;

import android.graphics.Camera;

import android.graphics.Matrix;

import android.util.AttributeSet;

import android.util.Log;

import android.view.View;

import android.view.animation.Transformation;

import android.widget.Gallery;

import android.widget.ImageView;

//自己定义的Gallery

public class CoverFlow extends Gallery {

private Camera mCamera = new Camera();

private int mMaxRotationAngle = 50;

private int mMaxZoom = -500;

private int mCoveflowCenter;

private boolean mAlphaMode = true;

private boolean mCircleMode = false;

public CoverFlow(Context context) {

super(context);

this.setStaticTransformationsEnabled(true);

Log.e(“sequence”, “CoverFlow2”);

}

public CoverFlow(Context context, AttributeSet attrs) {

super(context, attrs);

this.setStaticTransformationsEnabled(true);

}

public CoverFlow(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 boolean getCircleMode() {

return mCircleMode;

}

public void setCircleMode(boolean isCircle) {

mCircleMode = isCircle;

}

public boolean getAlphaMode() {

return mAlphaMode;

}

public void setAlphaMode(boolean isAlpha) {

mAlphaMode = isAlpha;

}

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;

}

//重写Garray方法 ,产生层叠和放大效果

@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, 0);

} else {

rotationAngle = (int) (((float) (mCoveflowCenter - childCenter) / childWidth) * mMaxRotationAngle);

// Log.d(“test”, “recanglenum:”+Math.floor ((mCoveflowCenter -

// childCenter) / childWidth));

if (Math.abs(rotationAngle) > mMaxRotationAngle) {

rotationAngle = (rotationAngle < 0) ? -mMaxRotationAngle

mMaxRotationAngle;

}

transformImageBitmap((ImageView) child, t, rotationAngle,

(int) Math.floor((mCoveflowCenter - childCenter)/ (childWidth==0?1:childWidth)));

}

Log.e(“sequence”, “getChildStaticTransformation”);

return true;

}

/**

This is called during layout when the size of this view has changed. If you were just added to the view hierarchy, you’re called with the old values of 0. @param w Current width of this view.

@param h Current height of this view.

@param oldw Old width of this view.

@param oldh Old height of this view.

*/

protected void onSizeChanged(int w, int h, int oldw, int oldh) {

mCoveflowCenter = getCenterOfCoverflow();

super.onSizeChanged(w, h, oldw, oldh);

Log.e(“sequence”, “onSizeChanged”);

}

/**

Transform the Image Bitmap by the Angle passed @param imageView ImageView the ImageView whose bitmap we want to rotate

@param t transformation

@param rotationAngle the Angle by which to rotate the Bitmap

*/

private void transformImageBitmap(ImageView child, Transformation t,

int rotationAngle, int d) {

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);

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);

if (mCircleMode) {

if (rotation < 40)

mCamera.translate(0.0f, 155, 0.0f);

else

mCamera.translate(0.0f, (255 - rotation * 2.5f), 0.0f);

}

if (mAlphaMode) {

((ImageView) (child)).setAlpha((int) (255 - rotation * 2.5));

}

}

mCamera.rotateY(rotationAngle);

mCamera.getMatrix(imageMatrix);

imageMatrix.preTranslate(-(imageWidth / 2), -(imageHeight / 2));

imageMatrix.postTranslate((imageWidth / 2), (imageHeight / 2));

mCamera.restore();

Log.e(“sequence”, “transformImageBitmap”);

}

}

4、图片适配器:ImageAdapter。这里,我改写了getView方法,把图片按照一定比例进行缩放,防止图片过大,超出屏幕而导致报错。

package com.myandroid.test;

import java.io.InputStream;

import android.content.Context;

import android.content.res.Resources;

import android.graphics.Bitmap;

import android.graphics.BitmapFactory;

import android.graphics.Matrix;

import android.graphics.drawable.BitmapDrawable;

import android.view.View;

import android.view.ViewGroup;

import android.widget.BaseAdapter;

import android.widget.Gallery;

import android.widget.ImageView;

public class ImageAdapter extends BaseAdapter {

private Context context;

private Integer[] images;

public ImageAdapter(Context context, Integer[] imageIds) {

this.context = context;

this.images = imageIds;

}

@Override

public int getCount() {

// TODO Auto-generated method stub

return images.length;

自我介绍一下,小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。

深知大多数Android工程师,想要提升技能,往往是自己摸索成长或者是报班学习,但对于培训机构动则几千的学费,着实压力不小。自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!

因此收集整理了一份《2024年Android移动开发全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。

既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上Android开发知识点,真正体系化!

由于文件比较大,这里只是将部分目录大纲截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且后续会持续更新

如果你觉得这些内容对你有帮助,可以添加V获取:vip204888 (备注Android)

学习福利

【Android 详细知识点思维脑图(技能树)】

其实Android开发的知识点就那么多,面试问来问去还是那么点东西。所以面试没有其他的诀窍,只看你对这些知识点准备的充分程度。so,出去面试时先看看自己复习到了哪个阶段就好。

虽然 Android 没有前几年火热了,已经过去了会四大组件就能找到高薪职位的时代了。这只能说明 Android 中级以下的岗位饱和了,现在高级工程师还是比较缺少的,很多高级职位给的薪资真的特别高(钱多也不一定能找到合适的),所以努力让自己成为高级工程师才是最重要的。

这里附上上述的面试题相关的几十套字节跳动,京东,小米,腾讯、头条、阿里、美团等公司19年的面试题。把技术点整理成了视频和PDF(实际上比预期多花了不少精力),包含知识脉络 + 诸多细节。

由于篇幅有限,这里以图片的形式给大家展示一小部分。

网上学习 Android的资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。希望这份系统化的技术体系对大家有一个方向参考。

的充分程度。so,出去面试时先看看自己复习到了哪个阶段就好。

虽然 Android 没有前几年火热了,已经过去了会四大组件就能找到高薪职位的时代了。这只能说明 Android 中级以下的岗位饱和了,现在高级工程师还是比较缺少的,很多高级职位给的薪资真的特别高(钱多也不一定能找到合适的),所以努力让自己成为高级工程师才是最重要的。

这里附上上述的面试题相关的几十套字节跳动,京东,小米,腾讯、头条、阿里、美团等公司19年的面试题。把技术点整理成了视频和PDF(实际上比预期多花了不少精力),包含知识脉络 + 诸多细节。

由于篇幅有限,这里以图片的形式给大家展示一小部分。

[外链图片转存中…(img-y0wZbuES-1711628583124)]

网上学习 Android的资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。希望这份系统化的技术体系对大家有一个方向参考。

本文已被CODING开源项目:《Android学习笔记总结+移动架构视频+大厂面试真题+项目实战源码》收录

文章来源

评论可见,请评论后查看内容,谢谢!!!评论后请刷新页面。