亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android Color顏色過度計算實現代碼

發布時間:2020-09-12 17:49:33 來源:腳本之家 閱讀:129 作者:lqh 欄目:移動開發

Android Color顏色過度計算實現代碼

在看自定義TypeEvaluator來計算屬性動畫的屬性值時,用到了對顏色的過度計算,翻看了好多博客,找到了比較有優秀的解決方案,在此記錄,以備后用。

實現效果圖:

Android Color顏色過度計算實現代碼

實現代碼:

/**
 * 根據fraction值來計算當前的顏色。
 */
private int getCurrentColor(float fraction, int startColor, int endColor) {
  int redCurrent;
  int blueCurrent;
  int greenCurrent;
  int alphaCurrent;

  int redStart = Color.red(startColor);
  int blueStart = Color.blue(startColor);
  int greenStart = Color.green(startColor);
  int alphaStart = Color.alpha(startColor);

  int redEnd = Color.red(endColor);
  int blueEnd = Color.blue(endColor);
  int greenEnd = Color.green(endColor);
  int alphaEnd = Color.alpha(endColor);

  int redDifference = redEnd - redStart;
  int blueDifference = blueEnd - blueStart;
  int greenDifference = greenEnd - greenStart;
  int alphaDifference = alphaEnd - alphaStart;

  redCurrent = (int) (redStart + fraction * redDifference);
  blueCurrent = (int) (blueStart + fraction * blueDifference);
  greenCurrent = (int) (greenStart + fraction * greenDifference);
  alphaCurrent = (int) (alphaStart + fraction * alphaDifference);

  return Color.argb(alphaCurrent, redCurrent, greenCurrent, blueCurrent);
}

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

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

深圳市| 荥经县| 托克逊县| 新河县| 乐昌市| 德格县| 洛扎县| 博客| 思南县| 洪湖市| 古田县| 灵丘县| 七台河市| 汾阳市| 六盘水市| 黔南| 响水县| 杂多县| 含山县| 丹阳市| 株洲市| 岗巴县| 镶黄旗| 东丰县| 五华县| 汉中市| 新闻| 瑞金市| 郑州市| 普定县| 崇义县| 临海市| 朝阳县| 霍城县| 炉霍县| 通山县| 汽车| 临颍县| 隆子县| 丰县| 廉江市|