View学习
文章平均质量分 65
小纸箱
归来仍少年
展开
-
Android TV 3D卡片无限循环效果
TV 3D卡片无限循环效果##前言需求:实现3个卡片实现无限循环效果:1-2-3-1-2-3-1…,而且要实现3D效果:中间突出,两侧呈角度显示Viewpager实现方式(1) LoopViewpager,有兴趣的同学可以去github上看一下。(2) 通过定义一个item的个数Integer,MAX,然后设置初始位置为:Integer,MAX/2。以上方式如果简单的加载图片这种方式还可取,由于需求3个界面内部控件比较多,在加上需要实现自定义的的3D效果,使用ViewPager实现难为了小编,原创 2021-10-29 16:30:48 · 1607 阅读 · 0 评论 -
文字外发光效果
1.android提供倒影效果,原生方法/** * Gives the text a shadow of the specified radius and color, the specified * distance from its normal position. * * @attr ref android.R.styleable#TextView_s...原创 2018-04-05 15:40:42 · 2520 阅读 · 0 评论 -
Paint绘制一张图片
1.使用画笔绘制一张BitmapCanvas canvas = null; Bitmap bitmap = null; try { TextPaint textPaint = new TextPaint(); textPaint.setColor(Color.argb(255, 0, 0, 255)); ...转载 2018-04-06 17:06:50 · 1813 阅读 · 0 评论