国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > Android > 正文

Android開發仿IOS滑動開關實現代碼

2019-12-12 02:55:13
字體:
來源:轉載
供稿:網友

Android開發仿IOS滑動開關實現代碼

Android與iOS相比,ios好多控件都是自帶的,而android需要使用自定義來實現。今天說的是ios的滑動開關,我層看到好多博客都是通過自定義ToggleButton實現的。這里我通過自定義view來實現他的效果。

首先在onsizechange里把2個半圓和一個矩形繪制出來。

width = w;    height = h;    left = top = 0;    right = width;    bottom = height * 0.8f;    cx = (right + left) / 2;    cy = (bottom + top) / 2;    RectF rectF = new RectF(left, top, bottom, bottom);    path.arcTo(rectF, 90, 180);    rectF.left = right - bottom;    rectF.right = right;    path.arcTo(rectF, 270, 180);    path.close();    circle_left = 0;    circle_right = bottom;    circle_width = circle_right - circle_left;    float circle_height = (bottom - top) / 2;    radius = circle_height * 0.9f;    borderwidth = (int) (2 * (circle_height - radius));    circle_cx = width - circle_height;

剩下的就是ondraw方法來繪制顏色,以及切換的效果。

protected void onDraw(Canvas canvas) {    super.onDraw(canvas);    paint.setStyle(Style.FILL);    paint.setAntiAlias(true);    canvas.setDrawFilter(new PaintFlagsDrawFilter(0, Paint.ANTI_ALIAS_FLAG | Paint.FILTER_BITMAP_FLAG));    if (isChoose) {      paint.setColor(onColor);    } else {      paint.setColor(offColor);    }    canvas.drawPath(path, paint);    isAnimation = isAnimation - 0.1f > 0 ? isAnimation - 0.1f : 0;    //縮放大小參數隨isAnimation變化而變化    final float scale = 0.98f * (isChoose ? isAnimation : 1 - isAnimation);    //保存canvas狀態    canvas.save();    canvas.scale(scale, scale, circle_cx, cy);    paint.setColor(offColor);    canvas.drawPath(path, paint);    canvas.restore();    paint.reset();    float bTranslateX = width - circle_width;    final float translate = bTranslateX * (isChoose ? 1 - isAnimation : isAnimation);    canvas.translate(translate, 0);    if (isAnimation > 0) {      invalidate();    }    canvas.save();    paint.setStyle(Style.FILL);    paint.setColor(offColor);    canvas.drawCircle(circle_width / 2, circle_width / 2, radius, paint); // 按鈕白底    paint.setStyle(Style.STROKE);    paint.setColor(borderColor);    paint.setStrokeWidth(borderwidth);    canvas.drawCircle(circle_width / 2, circle_width / 2, radius, paint); // 按鈕灰邊    canvas.restore();  }

最后我們在ontouch里面去改變他的狀態:

  public boolean onTouchEvent(MotionEvent event) {    switch (event.getAction()) {      case MotionEvent.ACTION_DOWN:        return true;      case MotionEvent.ACTION_CANCEL:        return true;      case MotionEvent.ACTION_UP:          isAnimation = 1;          isChoose = !isChoose;          listener.onStateChanged(isChoose);          invalidate();        break;    }    return super.onTouchEvent(event);  }

感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 广灵县| 珠海市| 正阳县| 吉林省| 濮阳县| 循化| 垦利县| 临泽县| 古田县| 尖扎县| 克拉玛依市| 龙井市| 甘德县| 剑河县| 阿合奇县| 故城县| 葵青区| 阜新| 安乡县| 常熟市| 庆阳市| 沾化县| 内丘县| 增城市| 留坝县| 张北县| 阜阳市| 罗田县| 米脂县| 孟村| 开阳县| 大竹县| 中超| 青神县| 凤山县| 威宁| 孝义市| 汕尾市| 隆子县| 民和| 济南市|