欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Android自定義View實(shí)現(xiàn)BMI指數(shù)條

 更新時(shí)間:2016年06月07日 10:30:21   作者:tyktfj0910  
這篇文章主要為大家詳細(xì)介紹了Android自定義View實(shí)現(xiàn)BMI指數(shù)條,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

最近項(xiàng)目需要,需要做一個(gè)BMI指數(shù)的指示條,先上效果圖:

BMI指數(shù)從18到35,然后上面指示條的顏色會(huì)隨著偏移量的變化而改變,數(shù)字顯示當(dāng)前的BMI指數(shù),下面的BMI標(biāo)準(zhǔn)也是根據(jù)不同數(shù)值的范圍來(lái)判斷的。考慮到這個(gè)view的特殊性,最后采用的是自定義的view來(lái)完成的。

1.頁(yè)面布局:

 <LinearLayout
  android:layout_width="fill_parent"
  android:layout_height="100dp"
  android:layout_marginLeft="5dp"
  android:layout_marginRight="5dp"
  android:layout_marginTop="50dp"
  android:background="@color/white"
  android:orientation="horizontal" >

  <TextView
   style="@style/w_wrap_h_wrap"
   android:layout_marginTop="@dimen/login_hei"
   android:text="@string/bmi_text"
   android:textColor="@color/gray"
   android:textSize="@dimen/login_edit_border_margin" />

  <com.jxj.jwotchhelper.view.NewBmiView
   android:id="@+id/bmiview"
   android:layout_width="fill_parent"
   android:layout_height="fill_parent" />
 </LinearLayout>

左邊是BMI文字,右邊是自定義的view,沒(méi)啥說(shuō)的,下面是view的具體過(guò)程:

2.代碼實(shí)現(xiàn):
新建一個(gè)NewBmiView類(lèi),并且繼承自view類(lèi),然后添加構(gòu)造方法;

public class NewBmiView extends View {

 /** 分段顏色 */
 private static final int[] SECTION_COLORS = { Color.rgb(255, 204, 47), Color.GREEN,
   Color.RED };
 /** 畫(huà)筆 */
 private Paint mPaint;
 private Paint textPaint;
 private Paint drawablePaint;
 private Paint drawableBMIPaint;
 private Paint bmiTextpaint;
 private int bmiwidth, mWidth, mHeight, widthSum;
 private double value;
 private double i;
 private double bmi;

 private float valueWidth;
 private String bmiText;

 // 定義計(jì)算顏色的參數(shù)
 private int x, y, z;

 public NewBmiView(Context context) {

  super(context);
  initviews(context);
 }

 public NewBmiView(Context context, AttributeSet attrs) {
  super(context, attrs);
  initviews(context);
 }

 public NewBmiView(Context context, AttributeSet attrs, int defStyleAttr) {
  super(context, attrs, defStyleAttr);
  initviews(context);
 }

 private void initviews(Context context) {
 }

然后就是重寫(xiě)onMeasure與onDraw這兩個(gè)方法,通過(guò)onMeasure這個(gè)方法獲取到了view的寬高,關(guān)于具體設(shè)置,可以參考鴻洋大神的相關(guān)說(shuō)明:

http://www.dbjr.com.cn/article/86061.htm

protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
  int widthSpecMode = MeasureSpec.getMode(widthMeasureSpec);
  int widthSpecSize = MeasureSpec.getSize(widthMeasureSpec);
  int heightSpecMode = MeasureSpec.getMode(heightMeasureSpec);
  int heightSpecSize = MeasureSpec.getSize(heightMeasureSpec);
  if (widthSpecMode == MeasureSpec.EXACTLY
    || widthSpecMode == MeasureSpec.AT_MOST) {
   widthSum = widthSpecSize;
  } else {
   widthSum = 0;
  }
  if (heightSpecMode == MeasureSpec.AT_MOST
    || heightSpecMode == MeasureSpec.UNSPECIFIED) {
   mHeight = dipToPx(15);
  } else {
   mHeight = heightSpecSize;
  }
  setMeasuredDimension(widthSum, mHeight);
 }

然后重點(diǎn)就是onDraw這個(gè)方法了:

// 畫(huà)自定義的漸變條
  mPaint = new Paint();
  // 去除鋸齒
  mPaint.setAntiAlias(true);
  // 自定義圓角的弧度
  int round = mHeight / 20;
  // 新建矩形
  RectF rectBg = new RectF(bmiwidth, mHeight - (mHeight * 1 / 2), mWidth
    + bmiwidth, mHeight - (mHeight * 2 / 5));
  // 設(shè)置漸變色
  // CLAMP重復(fù)最后一個(gè)顏色至最后
  // MIRROR重復(fù)著色的圖像水平或垂直方向已鏡像方式填充會(huì)有翻轉(zhuǎn)效果
  // REPEAT重復(fù)著色的圖像水平或垂直方向
  LinearGradient shader = new LinearGradient(bmiwidth, mHeight
    - (mHeight * 1 / 2), mWidth + bmiwidth, mHeight
    - (mHeight * 2 / 5), SECTION_COLORS, null,
    Shader.TileMode.MIRROR);
  mPaint.setShader(shader);
  // rect:RectF對(duì)象。x方向上的圓角半徑。ry:y方向上的圓角半徑。paint:繪制時(shí)所使用的畫(huà)筆。
  canvas.drawRoundRect(rectBg, round, round, mPaint);

  // 畫(huà)下面的小箭頭
  drawablePaint = new Paint();
  drawablePaint.setAntiAlias(true);
  Bitmap arrowBitmap = BitmapFactory.decodeResource(getResources(),
    R.drawable.arrow_up);
  canvas.drawBitmap(arrowBitmap, mWidth * 2 / 17 + bmiwidth, mHeight
    - (mHeight * 2 / 5) + 5, drawablePaint);
  canvas.drawBitmap(arrowBitmap, mWidth * 7 / 17 + bmiwidth, mHeight
    - (mHeight * 2 / 5) + 5, drawablePaint);
  canvas.drawBitmap(arrowBitmap, mWidth * 12 / 17 + bmiwidth, mHeight
    - (mHeight * 2 / 5) + 5, drawablePaint);

  // 畫(huà)下方的文字
  String text = "偏瘦";
  Rect textBounds = new Rect();
  textPaint = new Paint();
  textPaint.setAntiAlias(true);
  textPaint.setColor(Color.GRAY);
  textPaint.setTextSize(30);
  // 獲取字體的高寬
  textPaint.getTextBounds(text, 0, text.length(), textBounds);
  float textWidth = textBounds.width();
  float textHeight = textBounds.height();

  canvas.drawText("偏瘦", (mWidth * 2 / 17) / 2 - textWidth / 2 + bmiwidth,
    mHeight * 7 / 10 + textHeight / 2 + 10, textPaint);
  canvas.drawText("標(biāo)準(zhǔn)", (mWidth * 2 / 17) + (mWidth * 5 / 17) / 2
    - textWidth / 2 + bmiwidth, mHeight * 7 / 10 + textHeight / 2
    + 10, textPaint);
  canvas.drawText("超重", (mWidth * 7 / 17) + (mWidth * 5 / 17) / 2
    - textWidth / 2 + bmiwidth, mHeight * 7 / 10 + textHeight / 2
    + 10, textPaint);
  canvas.drawText("肥胖", (mWidth * 12 / 17) + (mWidth * 5 / 17) / 2
    - textWidth / 2 + bmiwidth, mHeight * 7 / 10 + textHeight / 2
    + 10, textPaint);

  // 畫(huà)上方偏移的小方塊
  drawableBMIPaint = new Paint();
  drawableBMIPaint.setAntiAlias(true);
  // 設(shè)置顏色

  // 通過(guò)BMI來(lái)RGB計(jì)算顏色
  i = (value - 18) * (34 / 17);
  if (i >= 0 && i <= 17) {
   x = (int) ((17 - i) * (255 / 17));
   y = 204;
   z = 47;

  }
  if (i > 17 && i <= 34) {
   x = (int) ((i - 17) * (255 / 17));
   y = (int) ((34 - i) * (255 / 17));
   z = 0;
  }

  drawableBMIPaint.setColor(Color.rgb(x, y, z));
  System.out.println("顏色值為" + String.valueOf(x) + String.valueOf(y)
    + String.valueOf(z));

  canvas.drawRect(getvalue(), mHeight / 6, getvalue() + bmiBitmap.getWidth(),
    bmiBitmap.getHeight()+mHeight / 6, drawableBMIPaint);
  System.out.println("偏移量為" + getvalue());
  canvas.drawBitmap(bmiBitmap, getvalue(), mHeight / 6, drawablePaint);

  // 畫(huà)上方偏移的小方塊里面的文字
  String bmitext = "40.0";
  Rect bmitextBounds = new Rect();
  bmiTextpaint = new Paint();
  bmiTextpaint.setAntiAlias(true);
  bmiTextpaint.setTextSize(35);
  bmiTextpaint.setColor(Color.WHITE);
  // 獲取字體的高寬
  bmiTextpaint.getTextBounds(bmitext, 0, bmitext.length(), bmitextBounds);
  canvas.drawText(bmiText, getvalue() - (bmitextBounds.width() / 2)
    + bmiwidth, mHeight / 3 + (bmitextBounds.height() / 3),
    bmiTextpaint);

其中需要注意的是,這里小方塊的顏色值我是根據(jù)BMI值大小,算出RGB三原色的漸變值,沒(méi)有找到系統(tǒng)自帶渲染漸變條的方法中,提供的顏色值,所以就用這種方法計(jì)算出來(lái),會(huì)有一定得誤差。
然后就是關(guān)于Textview,因?yàn)樽詭捀?,所以在繪制Textview的時(shí)候,需要考慮寬高再繪制。
通過(guò)set方法傳遞參數(shù)

public void setBmi(double bmi) {
  this.value = bmi;
  // 設(shè)置顏色
  if (value < 18) {
   this.value = 18;
  } else if (value > 35) {
   this.value = 35;
  }
  invalidate();
 }

 public void setBmiText(String bmiText) {
  this.bmiText = bmiText;
 }

最后就是在activity中應(yīng)用了:

bmiview= (NewBmiView) getView().findViewById(R.id.bmiview);
  //將BMI指數(shù)傳遞過(guò)去
  bmiview.setBmi(35);
  bmiview.setBmiText("35.0");

然后就達(dá)到了預(yù)期的效果,代碼有點(diǎn)亂~

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • android調(diào)試工具DDMS的使用詳解

    android調(diào)試工具DDMS的使用詳解

    本篇文章對(duì)android調(diào)試工具DDMS的使用進(jìn)行了詳細(xì)的分析介紹。需要的朋友參考下
    2013-05-05
  • Android 應(yīng)用中插入廣告的實(shí)例

    Android 應(yīng)用中插入廣告的實(shí)例

    本文主要介紹Android應(yīng)用中插入廣告,這里提供了詳細(xì)的資料及實(shí)現(xiàn)示例代碼,有興趣的小伙伴可以參考下
    2016-08-08
  • Android listview多視圖嵌套多視圖

    Android listview多視圖嵌套多視圖

    這篇文章主要介紹了Android listview多視圖嵌套多視圖 的相關(guān)資料,需要的朋友可以參考下
    2016-02-02
  • Android自定義控制條效果

    Android自定義控制條效果

    這篇文章主要為大家詳細(xì)介紹了Android自定義控制條效果,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2020-07-07
  • android之RatingBar控件用法詳解

    android之RatingBar控件用法詳解

    下面小編就為大家?guī)?lái)一篇android之RatingBar控件用法詳解。小編覺(jué)得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧
    2016-09-09
  • Android深入分析屬性動(dòng)畫(huà)源碼

    Android深入分析屬性動(dòng)畫(huà)源碼

    這篇文章主要給大家介紹了關(guān)于Android動(dòng)畫(huà)系列教程之屬性動(dòng)畫(huà)的相關(guān)資料,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2022-08-08
  • 五分了解Android?Progress?Bar進(jìn)度條加載

    五分了解Android?Progress?Bar進(jìn)度條加載

    這篇文章主要為大家介紹了Android?Progress?Bar進(jìn)度條加載的實(shí)現(xiàn)及屬性示例詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪
    2023-02-02
  • Flutter模仿實(shí)現(xiàn)微信底部導(dǎo)航欄流程詳解

    Flutter模仿實(shí)現(xiàn)微信底部導(dǎo)航欄流程詳解

    這篇文章主要介紹了Flutter模仿實(shí)現(xiàn)微信底部導(dǎo)航欄流程,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)吧
    2023-05-05
  • 詳談Android從文件讀取圖像顯示的效率問(wèn)題

    詳談Android從文件讀取圖像顯示的效率問(wèn)題

    下面小編就為大家?guī)?lái)一篇詳談Android從文件讀取圖像顯示的效率問(wèn)題。小編覺(jué)得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧
    2017-03-03
  • 分析CmProcess跨進(jìn)程通信的實(shí)現(xiàn)

    分析CmProcess跨進(jìn)程通信的實(shí)現(xiàn)

    CmProcess是Android一個(gè)跨進(jìn)程通信框架,無(wú)需進(jìn)行bindService()操作,不用定義Service,也不需要定義aidl。 支持IPC級(jí)的 Callback,并且支持跨進(jìn)程的事件總線(xiàn),可同步獲取服務(wù),采用面向接口方式進(jìn)行服務(wù)注冊(cè)與調(diào)用,服務(wù)調(diào)用方和使用者完全解耦
    2021-06-06

最新評(píng)論