Gallery 画廊 5张图片叠加

前言:因为要做一个设置开机画面的功能,主要是让用户可以设置自己的开机画面,应用层需要做让用户选择开机画面图片的功能。所以需要做一个简单的图片浏览选择程序。最后选用Gallery作为基本控件。加入了一些炫一点的元素,做成3D滑动效果。下面是Demo例子截图:



效果网上已经很多人做出来了,只是这次需要用到,所以自己也实践了一下(这里例子我也是根据网上一些资料编写)。特下面针对一些关键代码进行简要说明,需要做这方面东西的朋友可以看看。这篇文章是实用性文章,理论分析不多。


 下面说下具体的类作用:

一:这个是主页:操作的内容不多,可以具体看一下

[java] view plain copy
  1. public class MainActivity extends Activity {  
  2.   
  3.     DisplayImageOptions options;  
  4.   
  5.     private ImageLoader imageLoader;  
  6.   
  7.     private FancyCoverFlow fancyCoverFlow;  
  8.   
  9.     private List filmList;  
  10.   
  11.     private ImageAdapter adapter;  
  12.   
  13.   
  14.     private int cur_index = 0;  
  15.     private int count_drawble;  
  16.     private static int MSG_UPDATE = 1;  
  17.     // 定时任务  
  18.     private ScheduledExecutorService scheduledExecutorService;  
  19.   
  20.     // 通过handler来更新主界面  
  21.     private Handler handler = new Handler() {  
  22.   
  23.         public void handleMessage(Message msg) {  
  24.             if (msg.what == MSG_UPDATE) {  
  25.                 fancyCoverFlow.setSelection(cur_index);  
  26.             }  
  27.         }  
  28.     };  
  29.   
  30.     public void onCreate(Bundle savedInstanceState) {  
  31.         super.onCreate(savedInstanceState);  
  32.         setContentView(R.layout.activity_main);  
  33.         filmList = FilmInfoTest.getfilmInfo();  
  34.         Log.i("INFO", filmList.size()+"条目数");  
  35.         // 配置option  
  36.         options = new DisplayImageOptions.Builder()  
  37.                 .showStubImage(R.drawable.logo)  
  38.                 .showImageForEmptyUri(R.drawable.logo)  
  39.                 .showImageOnFail(R.drawable.ic_error).cacheInMemory(true)  
  40.                 .cacheOnDisc(true).bitmapConfig(Bitmap.Config.RGB_565).build();  
  41.   
  42.         imageLoader = ImageLoader.getInstance();  
  43.   
  44.         adapter = new ImageAdapter(this, filmList, options, imageLoader);  
  45.   
  46.         fancyCoverFlow = (FancyCoverFlow) findViewById(R.id.fancyCoverFlow);  
  47.   
  48.         // item之间的间隙可以近似认为是imageview的宽度与缩放比例的乘积的一半  
  49.         fancyCoverFlow.setSpacing(-180);  
  50.         fancyCoverFlow.setAdapter(adapter);  
  51.         fancyCoverFlow.setSelection(1002);  
  52. //      fancyCoverFlow.setActionDistance(10);  
  53.           
  54.         fancyCoverFlow.setOnItemSelectedListener(new OnItemSelectedListener() {  
  55.   
  56.             @Override  
  57.             public void onItemSelected(AdapterView parent, View view,  
  58.                     int position, long id) {  
  59.                 cur_index = position;  
  60.             }  
  61.   
  62.             @Override  
  63.             public void onNothingSelected(AdapterView parent) {  
  64.             }  
  65.         });  
  66.   
  67.         // 点击事件  
  68.         fancyCoverFlow.setOnItemClickListener(new OnItemClickListener() {  
  69.   
  70.             @Override  
  71.             public void onItemClick(AdapterView parent, View view,  
  72.                     int position, long id) {  
  73.                 // TODO Auto-generated method stub  
  74.                 Toast.makeText(MainActivity.this,  
  75.                         filmList.get(position % filmList.size()).getFilmName(),  
  76.                         0).show();  
  77.             }  
  78.         });  
  79.   
  80. //      // 开启自动轮播  
  81. //      count_drawble = adapter.getCount();  
  82. //      startPlay();  
  83.     }  
  84.   
  85.     /** 
  86.      * 开始轮播图切换 
  87.      */  
  88.     private void startPlay() {  
  89.         scheduledExecutorService = Executors.newSingleThreadScheduledExecutor();  
  90.         scheduledExecutorService.scheduleAtFixedRate(new AutoPlayTask(), 14,  
  91.                 TimeUnit.SECONDS);  
  92.     }  
  93.   
  94.     /** 
  95.      * 停止轮播图切换 
  96.      */  
  97.     private void stopPlay() {  
  98.         scheduledExecutorService.shutdown();  
  99.     }  
  100.   
  101.     /** 
  102.      * 执行轮播图切换任务 
  103.      *  
  104.      */  
  105.     private class AutoPlayTask implements Runnable {  
  106.   
  107.         @Override  
  108.         public void run() {  
  109.   
  110. //          cur_index = cur_index % count_drawble; // 图片区间[0,count_drawable)  
  111. //          Message msg = handler.obtainMessage(MSG_UPDATE);  
  112. //          handler.sendMessage(msg);  
  113. //          cur_index++;  
  114.         }  
  115.   
  116.     }  
  117.   
  118.     @Override  
  119.     protected void onStop() {  
  120.         imageLoader.stop();  
  121.         super.onStop();  
  122.     }  

二:适配器

这里我主要是用本地资源进行测试了一下,设置了倒影等等,当然,你也可以改为xml布局设置图片的

[java] view plain copy
  1. public class ImageAdapter extends FancyCoverFlowAdapter {  
  2.     private Context context;  
  3.     private List filmList;  
  4. //  private ImageLoader imageLoader;  
  5. //  private DisplayImageOptions options;  
  6.   
  7.     public ImageAdapter(Context context, List filmList,  
  8.             DisplayImageOptions options, ImageLoader imageLoader) {  
  9.         this.context = context;  
  10.         this.filmList = filmList;  
  11. //      this.options = options;  
  12. //      this.imageLoader = imageLoader;  
  13.     }  
  14.   
  15.     @Override  
  16.     public int getCount() {  
  17.         // TODO Auto-generated method stub  
  18.         return Integer.MAX_VALUE;  
  19.     }  
  20.   
  21.     @Override  
  22.     public Object getItem(int position) {  
  23.         // TODO Auto-generated method stub  
  24.         return filmList.get(position);  
  25. //      return position;  
  26.     }  
  27.   
  28.     @Override  
  29.     public long getItemId(int position) {  
  30.         // TODO Auto-generated method stub  
  31.         return position % filmList.size();  
  32. //      return position;  
  33.     }  
  34.   
  35.     @Override  
  36.     public View getCoverFlowItem(int position, View reusableView,  
  37.             ViewGroup parent) {  
  38.         ImageView imageView = (ImageView) reusableView;  
  39.   
  40.         if (imageView == null) {  
  41.             imageView = new ImageView(context);  
  42.         }  
  43.         Resources re = context.getResources();  
  44.         InputStream is = re.openRawResource(filmList.get(position%filmList.size()).getRs());  
  45. //      InputStream is = re.openRawResource(mImagesId[position%mImagesId.length]);  
  46.         BitmapDrawable mapdraw = new BitmapDrawable(is);  
  47.         Bitmap bitmap = mapdraw.getBitmap();  
  48.   
  49.         imageView.setImageBitmap(BitmapUtil.createReflectedBitmap(bitmap));  
  50. //      imageView.setImageBitmap(bitmap);  
  51.   
  52.         // ps.电影海报宽高比例一般为3:4  
  53.         imageView.setLayoutParams(new Gallery.LayoutParams(410713));  
  54.           
  55. //      // 异步加载图片  
  56. //      imageLoader.displayImage(filmList.get(position % filmList.size())  
  57. //              .getFilmImageLink(), imageView, options);  
  58.         imageView.setScaleType(ScaleType.CENTER_CROP);  
  59.         return imageView;  
  60.     }  
  61.       
  62.       public Integer[] getImagesId(){  
  63.           return mImagesId;  
  64.       }  
  65.         
  66.       public void setImagesId(Integer[] mImagesId){  
  67.           this.mImagesId = mImagesId;  
  68.       }  
  69.   
  70.      private Integer mImagesId[] = {  
  71.              R.drawable.ic_1,  
  72.              R.drawable.ic_3,  
  73.              R.drawable.ic_2,         
  74.              R.drawable.ic_4,  
  75.              R.drawable.ic_5  
  76.      };  


三:gallery 控件类

缩放,还有透明,等等都在这里设置

[java] view plain copy
  1. public class FancyCoverFlow extends Gallery {  
  2.   
  3.     public static final int ACTION_DISTANCE_AUTO = Integer.MAX_VALUE;  
  4.   
  5.     /** 
  6.      * 图片向上突出,可以通过代码控制,也可以在xml上控制 
  7.      */  
  8.     public static final float SCALEDOWN_GRAVITY_TOP = 0.0f;  
  9.     /** 
  10.      * 图片中间突出 
  11.      */  
  12.     public static final float SCALEDOWN_GRAVITY_CENTER = 0.5f;  
  13.     /** 
  14.      * 图片向下突出 
  15.      */  
  16.     public static final float SCALEDOWN_GRAVITY_BOTTOM = 1.0f;  
  17.   
  18.     private float reflectionRatio = 0.3f;  
  19.   
  20.     private int reflectionGap = 4;  
  21.   
  22.     private boolean reflectionEnabled = false;  
  23.   
  24.     private float unselectedAlpha;  
  25.   
  26.     private Camera transformationCamera;  
  27.   
  28.     private int maxRotation = 0;  
  29.   
  30.     private float unselectedScale;  
  31.   
  32.     private float scaleDownGravity = SCALEDOWN_GRAVITY_CENTER;  
  33.   
  34.     private int actionDistance;  
  35.   
  36.     private float unselectedSaturation;  
  37.   
  38.     public FancyCoverFlow(Context context) {  
  39.         super(context);  
  40.         this.initialize();  
  41.     }  
  42.   
  43.     public FancyCoverFlow(Context context, AttributeSet attrs) {  
  44.         super(context, attrs);  
  45.         this.initialize();  
  46.         this.applyXmlAttributes(attrs);  
  47.     }  
  48.   
  49.     @SuppressLint("NewApi")  
  50.     public FancyCoverFlow(Context context, AttributeSet attrs, int defStyle) {  
  51.         super(context, attrs, defStyle);  
  52.         if (Build.VERSION.SDK_INT >= 11) {  
  53.             this.setLayerType(LAYER_TYPE_SOFTWARE, null);  
  54.         }  
  55.         this.initialize();  
  56.         this.applyXmlAttributes(attrs);  
  57.     }  
  58.   
  59.     private void initialize() {  
  60.         this.transformationCamera = new Camera();  
  61.         this.setSpacing(0);  
  62.     }  
  63.   
  64.     private void applyXmlAttributes(AttributeSet attrs) {  
  65.         TypedArray a = getContext().obtainStyledAttributes(attrs,  
  66.                 R.styleable.FancyCoverFlow);  
  67.   
  68.         this.actionDistance = a  
  69.                 .getInteger(R.styleable.FancyCoverFlow_actionDistance,  
  70.                         ACTION_DISTANCE_AUTO);  
  71.         this.scaleDownGravity = a.getFloat(  
  72.                 R.styleable.FancyCoverFlow_scaleDownGravity, 0.5f);  
  73.         this.maxRotation = a.getInteger(R.styleable.FancyCoverFlow_maxRotation,  
  74.                 0);  
  75.         this.unselectedAlpha = a.getFloat(  
  76.                 R.styleable.FancyCoverFlow_unselectedAlpha, 0.5f);  
  77.         this.unselectedSaturation = a.getFloat(  
  78.                 R.styleable.FancyCoverFlow_unselectedSaturation, 0.0f);  
  79.         this.unselectedScale = a.getFloat(  
  80.                 R.styleable.FancyCoverFlow_unselectedScale, 0.75f);  
  81.     }  
  82.   
  83.     public float getReflectionRatio() {  
  84.         return reflectionRatio;  
  85.     }  
  86.   
  87.     public void setReflectionRatio(float reflectionRatio) {  
  88.         if (reflectionRatio <= 0 || reflectionRatio > 0.5f) {  
  89.             throw new IllegalArgumentException(  
  90.                     "reflectionRatio may only be in the interval (0, 0.5]");  
  91.         }  
  92.   
  93.         this.reflectionRatio = reflectionRatio;  
  94.   
  95.         if (this.getAdapter() != null) {  
  96.             ((FancyCoverFlowAdapter) this.getAdapter()).notifyDataSetChanged();  
  97.         }  
  98.     }  
  99.   
  100.     public int getReflectionGap() {  
  101.         return reflectionGap;  
  102.     }  
  103.   
  104.     public void setReflectionGap(int reflectionGap) {  
  105.         this.reflectionGap = reflectionGap;  
  106.   
  107.         if (this.getAdapter() != null) {  
  108.             ((FancyCoverFlowAdapter) this.getAdapter()).notifyDataSetChanged();  
  109.         }  
  110.     }  
  111.   
  112.     public boolean isReflectionEnabled() {  
  113.         return reflectionEnabled;  
  114.     }  
  115.   
  116.     public void setReflectionEnabled(boolean reflectionEnabled) {  
  117.         this.reflectionEnabled = reflectionEnabled;  
  118.         if (this.getAdapter() != null) {  
  119.             ((FancyCoverFlowAdapter) this.getAdapter()).notifyDataSetChanged();  
  120.         }  
  121.     }  
  122.   
  123.     @Override  
  124.     public void setAdapter(SpinnerAdapter adapter) {  
  125.         if (!(adapter instanceof FancyCoverFlowAdapter)) {  
  126.             throw new ClassCastException(FancyCoverFlow.class.getSimpleName()  
  127.                     + " only works in conjunction with a "  
  128.                     + FancyCoverFlowAdapter.class.getSimpleName());  
  129.         }  
  130.   
  131.         super.setAdapter(adapter);  
  132.     }  
  133.   
  134.     public int getMaxRotation() {  
  135.         return maxRotation;  
  136.     }  
  137.   
  138.     public void setMaxRotation(int maxRotation) {  
  139.         this.maxRotation = maxRotation;  
  140.     }  
  141.   
  142.     public float getUnselectedAlpha() {  
  143.         return this.unselectedAlpha;  
  144.     }  
  145.   
  146.     public float getUnselectedScale() {  
  147.         return unselectedScale;  
  148.     }  
  149.   
  150.     public void setUnselectedScale(float unselectedScale) {  
  151.         this.unselectedScale = unselectedScale;  
  152.     }  
  153.   
  154.     public float getScaleDownGravity() {  
  155.         return scaleDownGravity;  
  156.     }  
  157.   
  158.     public void setScaleDownGravity(float scaleDownGravity) {  
  159.         this.scaleDownGravity = scaleDownGravity;  
  160.     }  
  161.   
  162.     public int getActionDistance() {  
  163.         return actionDistance;  
  164.     }  
  165.   
  166.     public void setActionDistance(int actionDistance) {  
  167.         this.actionDistance = actionDistance;  
  168.     }  
  169.   
  170.     @Override  
  171.     public void setUnselectedAlpha(float unselectedAlpha) {  
  172.         super.setUnselectedAlpha(unselectedAlpha);  
  173.         this.unselectedAlpha = unselectedAlpha;  
  174.     }  
  175.   
  176.     public float getUnselectedSaturation() {  
  177.         return unselectedSaturation;  
  178.     }  
  179.   
  180.     public void setUnselectedSaturation(float unselectedSaturation) {  
  181.         this.unselectedSaturation = unselectedSaturation;  
  182.     }  
  183.   
  184.     public int preLeftOffset = 0;  
  185.     public int count = 0;  
  186.     public boolean isPlayDraw = true;  
  187.   
  188.     @Override  
  189.     protected boolean getChildStaticTransformation(View child, Transformation t) {  
  190.         FancyCoverFlowItemWrapper item = (FancyCoverFlowItemWrapper) child;  
  191.   
  192.         preLeftOffset = getChildAt(0).getLeft();  
  193.   
  194.         if (android.os.Build.VERSION.SDK_INT >= 16) {  
  195.             item.postInvalidate();  
  196.         }  
  197.   
  198.         final int coverFlowWidth = this.getWidth();  
  199.         final int coverFlowCenter = coverFlowWidth / 2;  
  200.         final int childWidth = item.getWidth();  
  201.         final int childHeight = item.getHeight();  
  202.         final int childCenter = item.getLeft() + childWidth / 2;  
  203.   
  204.         final int actionDistance = (this.actionDistance == ACTION_DISTANCE_AUTO) ? (int) ((coverFlowWidth + childWidth) / 2.0f)  
  205.                 : this.actionDistance;  
  206.   
  207.         float effectsAmount = Math.min(  
  208.                 1.0f,  
  209.                 Math.max(-1.0f, (1.0f / actionDistance)  
  210.                         * (childCenter - coverFlowCenter)));  
  211.   
  212.         t.clear();  
  213.         t.setTransformationType(Transformation.TYPE_BOTH);  
  214.   
  215.         if (this.unselectedAlpha != 1) {  
  216.             final float alphaAmount = (this.unselectedAlpha - 1)  
  217.                     * Math.abs(effectsAmount) + 1;  
  218.             t.setAlpha(alphaAmount);  
  219.         }  
  220.   
  221.         if (this.unselectedSaturation != 1) {  
  222.             // Pass over saturation to the wrapper.  
  223.             final float saturationAmount = (this.unselectedSaturation - 1)  
  224.                     * Math.abs(effectsAmount) + 1;  
  225.             item.setSaturation(saturationAmount);  
  226.         }  
  227.   
  228.         final Matrix imageMatrix = t.getMatrix();  
  229.   
  230.         // 旋转角度不为0则开始图片旋转.  
  231.         if (this.maxRotation != 0) {  
  232.             final int rotationAngle = (int) (-effectsAmount * this.maxRotation);  
  233.             this.transformationCamera.save();  
  234.             this.transformationCamera.rotateY(rotationAngle);  
  235.             this.transformationCamera.getMatrix(imageMatrix);  
  236.             this.transformationCamera.restore();  
  237.         }  
  238.   
  239.         // 缩放.  
  240.         if (this.unselectedScale != 1) {  
  241.             final float zoomAmount = 1f / 2f * (1 - Math.abs(effectsAmount))  
  242.                     * (1 - Math.abs(effectsAmount))  
  243.                     * (1 - Math.abs(effectsAmount)) + 0.5f;  
  244.             final float translateX = childWidth / 2.0f;  
  245.             final float translateY = childHeight * this.scaleDownGravity;  
  246.             imageMatrix.preTranslate(-translateX, -translateY);  
  247.             imageMatrix.postScale(zoomAmount, zoomAmount);  
  248.             imageMatrix.postTranslate(translateX, translateY);  
  249.   
  250.             if (effectsAmount != 0) {  
  251.   
  252.                 double point = 0.4;  
  253.                 double translateFactor = (-1f / (point * point)  
  254.                         * (Math.abs(effectsAmount) - point)  
  255.                         * (Math.abs(effectsAmount) - point) + 1)  
  256.                         * (effectsAmount > 0 ? 1 : -1);  
  257.   
  258.                 imageMatrix  
  259.                         .postTranslate(  
  260.                                 (float) (ViewUtil.Dp2Px(getContext(), 25) * translateFactor),  
  261.                                 0);  
  262.   
  263.             }  
  264.   
  265.         }  
  266.   
  267.         return true;  
  268.     }  
  269.   
  270.     // 绘制顺序,先从左到中间,再从右到中间  
  271.     @Override  
  272.     protected int getChildDrawingOrder(int childCount, int i) {  
  273.   
  274.         int selectedIndex = getSelectedItemPosition()  
  275.                 - getFirstVisiblePosition();  
  276.   
  277.         if (i < selectedIndex) {  
  278.             return i;  
  279.         } else if (i >= selectedIndex) {  
  280.             return childCount - 1 - i + selectedIndex;  
  281.         } else {  
  282.             return i;  
  283.         }  
  284.     }  
  285.   
  286.     private boolean isTouchAble = true;  
  287.   
  288.     public void disableTouch() {  
  289.         isTouchAble = false;  
  290.     }  
  291.   
  292.     public void enableTouch() {  
  293.         isTouchAble = true;  
  294.     }  
  295.   
  296.     public boolean isTouchAble() {  
  297.         return isTouchAble;  
  298.     }  
  299.   
  300.     @Override  
  301.     public boolean onTouchEvent(MotionEvent event) {  
  302.         count = 0;  
  303.         for (int i = 0; i < getChildCount(); i++) {  
  304.             getChildAt(i).invalidate();  
  305.         }  
  306.   
  307.         if (isTouchAble) {  
  308.             return super.onTouchEvent(event);  
  309.         } else {  
  310.             return false;  
  311.         }  
  312.     }  
  313.   
  314.     @Override  
  315.     public boolean onInterceptTouchEvent(MotionEvent event) {  
  316.         if (isTouchAble) {  
  317.             return super.onInterceptTouchEvent(event);  
  318.         } else {  
  319.             return true;  
  320.         }  
  321.     }  
  322.   
  323.     //  
  324.     // @Override  
  325.     // public boolean onSingleTapUp(MotionEvent e) {  
  326.     // return false;  
  327.     // }  
  328.   
  329.     // 使快速滑动失效  
  330.     @Override  
  331.     public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX,  
  332.             float velocityY) {  
  333.         return false;  
  334.     }  

四:倒影

[java] view plain copy
  1. reflectionGap 处理图片和倒影之间的间距。  

[java] view plain copy
  1. /** 
  2.  * grallery 倒影放大操作类 
  3.  */  
  4. public class MyImgView {  
  5.   
  6.     /** 
  7.      * 添加倒影,原理,先翻转图片,由上到下放大透明度 
  8.      * 
  9.      * @param originalImage 
  10.      * @return 
  11.      */  
  12.     public static Bitmap createReflectedImage(Bitmap originalImage) {  
  13.         // The gap we want between the reflection and the original image  
  14.         final int reflectionGap = 4;  
  15.   
  16.         int width = originalImage.getWidth();  
  17.         int height = originalImage.getHeight();  
  18.   
  19.         // This will not scale but will flip on the Y axis  
  20.         Matrix matrix = new Matrix();  
  21.         matrix.preScale(1, -1);  
  22.   
  23.         // Create a Bitmap with the flip matrix applied to it.  
  24.         // We only want the bottom half of the image  
  25.         Bitmap reflectionImage = Bitmap.createBitmap(originalImage, 0,  
  26.                 height / 2, width, height / 2, matrix, false);  
  27.   
  28.         // Create a new bitmap with same width but taller to fit reflection  
  29.         Bitmap bitmapWithReflection = Bitmap.createBitmap(width,  
  30.                 (height + height /4), Config.ARGB_8888);  
  31.   
  32.         // Create a new Canvas with the bitmap that's big enough for  
  33.         // the image plus gap plus reflection  
  34.         Canvas canvas = new Canvas(bitmapWithReflection);  
  35.         // Draw in the original image  
  36.         canvas.drawBitmap(originalImage, 00null);  
  37.         // Draw in the gap  
  38.         Paint defaultPaint = new Paint();  
  39.         canvas.drawRect(0, height, width, height + reflectionGap, defaultPaint);  
  40.         // Draw in the reflection  
  41.         canvas.drawBitmap(reflectionImage, 0, height + reflectionGap, null);  
  42.   
  43.         // Create a shader that is a linear gradient that covers the reflection  
  44.         Paint paint = new Paint();  
  45.         LinearGradient shader = new LinearGradient(0,  
  46.                 originalImage.getHeight(), 0, bitmapWithReflection.getHeight()  
  47.                 + reflectionGap, 0x70ffffff0x00ffffff, TileMode.CLAMP);  
  48.         // Set the paint to use this shader (linear gradient)  
  49.         paint.setShader(shader);  
  50.         // Set the Transfer mode to be porter duff and destination in 倒影底部颜色深浅变化  
  51.         paint.setXfermode(new PorterDuffXfermode(Mode.DST_IN));  
  52.         // Draw a rectangle using the paint with our linear gradient  
  53.         canvas.drawRect(0, height, width, bitmapWithReflection.getHeight()  
  54.                 + reflectionGap, paint);  
  55.   
  56.         return bitmapWithReflection;  
  57.     }  
  58.     //drawable 类型转化为bitmap  
  59.     public static Bitmap drawableToBitmap(Drawable drawable) {  
  60.   
  61.         Bitmap bitmap = Bitmap  
  62.                 .createBitmap(  
  63.                         drawable.getIntrinsicWidth(),  
  64.                         drawable.getIntrinsicHeight(),  
  65.                         drawable.getOpacity() != PixelFormat.OPAQUE ? Bitmap.Config.ARGB_8888  
  66.                                 : Bitmap.Config.RGB_565);  
  67.         Canvas canvas = new Canvas(bitmap);  
  68.         // canvas.setBitmap(bitmap);  
  69.         drawable.setBounds(00, drawable.getIntrinsicWidth(), drawable  
  70.                 .getIntrinsicHeight());  
  71.         drawable.draw(canvas);  
  72.         return bitmap;  
  73.     }  

Ps:主要就是这些个类,大家可以修改成为自己想要的效果,如有问题,可以评论问我!


具体下载地址:Android 控制3D酷炫效果

你可能感兴趣的:(Android,开发)