最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Android使用FontMetrics對(duì)象計(jì)算位置坐標(biāo)

 更新時(shí)間:2018年12月25日 08:50:20   作者:teletian  
這篇文章主要為大家詳細(xì)介紹了Android使用FontMetrics對(duì)象計(jì)算位置坐標(biāo),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

Canvas繪制文本時(shí),使用FontMetrics對(duì)象,計(jì)算位置的坐標(biāo)。

public static class FontMetrics {
  /**
   * The maximum distance above the baseline for the tallest glyph in 
   * the font at a given text size.
   */
  public float  top;
  /**
   * The recommended distance above the baseline for singled spaced text.
   */
  public float  ascent;
  /**
   * The recommended distance below the baseline for singled spaced text.
   */
  public float  descent;
  /**
   * The maximum distance below the baseline for the lowest glyph in 
   * the font at a given text size.
   */
  public float  bottom;
  /**
   * The recommended additional space to add between lines of text.
   */
  public float  leading;
}

它的各基準(zhǔn)線(xiàn)可以參考下圖:

上圖其實(shí)是通過(guò)代碼畫(huà)出來(lái)的,具體代碼如下:

/** 繪制FontMetrics對(duì)象的各種線(xiàn) */
mPaint.reset();
mPaint.setColor(Color.WHITE);
mPaint.setTextSize(80);
// FontMetrics對(duì)象
FontMetrics fontMetrics = mPaint.getFontMetrics();
String text = "abcdefg";
// 計(jì)算每一個(gè)坐標(biāo)
float textWidth = mPaint.measureText(text);
float baseX = 30;
float baseY = 700;
float topY = baseY + fontMetrics.top;
float ascentY = baseY + fontMetrics.ascent;
float descentY = baseY + fontMetrics.descent;
float bottomY = baseY + fontMetrics.bottom;
// 繪制文本
canvas.drawText(text, baseX, baseY, mPaint);
// BaseLine描畫(huà)
mPaint.setColor(Color.RED);
canvas.drawLine(baseX, baseY, baseX + textWidth, baseY, mPaint);
mPaint.setTextSize(20);
canvas.drawText("base", baseX + textWidth, baseY, mPaint);
// Base描畫(huà)
canvas.drawCircle(baseX, baseY, 5, mPaint);
// TopLine描畫(huà)
mPaint.setColor(Color.LTGRAY);
canvas.drawLine(baseX, topY, baseX + textWidth, topY, mPaint);
canvas.drawText("top", baseX + textWidth, topY, mPaint);
// AscentLine描畫(huà)
mPaint.setColor(Color.GREEN);
canvas.drawLine(baseX, ascentY, baseX + textWidth, ascentY, mPaint);
canvas.drawText("ascent", baseX + textWidth, ascentY + 10, mPaint);
// DescentLine描畫(huà)
mPaint.setColor(Color.YELLOW);
canvas.drawLine(baseX, descentY, baseX + textWidth, descentY, mPaint);
canvas.drawText("descent", baseX + textWidth, descentY, mPaint);
// ButtomLine描畫(huà)
mPaint.setColor(Color.MAGENTA);
canvas.drawLine(baseX, bottomY, baseX + textWidth, bottomY, mPaint);
canvas.drawText("buttom", baseX + textWidth, bottomY + 10, mPaint);

相信通過(guò)以上程序,能夠很好的理解topLine,buttomLine,baseLine,ascentLine,descentLine。
另外:Paint類(lèi)有兩個(gè)方法

/**
 * Return the distance above (negative) the baseline (ascent) based on the
 * current typeface and text size.
 *
 * @return the distance above (negative) the baseline (ascent) based on the
 *     current typeface and text size.
 */
public native float ascent();
 
/**
 * Return the distance below (positive) the baseline (descent) based on the
 * current typeface and text size.
 *
 * @return the distance below (positive) the baseline (descent) based on
 *     the current typeface and text size.
 */
public native float descent();

ascent():the distance above the baseline(baseline以上的height)
descent():the distance below the baseline(baseline以下的height)

所以ascent() + descent() 可以看成文字的height。

到此為止,怎么獲取文字的height和width都已經(jīng)揭曉了:

獲取height : mPaint.ascent() + mPaint.descent()

獲取width : mPaint.measureText(text)

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

相關(guān)文章

  • android 自定義ScrollView實(shí)現(xiàn)背景圖片伸縮的實(shí)現(xiàn)代碼及思路

    android 自定義ScrollView實(shí)現(xiàn)背景圖片伸縮的實(shí)現(xiàn)代碼及思路

    本文純屬個(gè)人見(jiàn)解,是對(duì)前面學(xué)習(xí)的總結(jié),如有描述不正確的地方還請(qǐng)高手指正~,首先還是按照通例給大家看下示例.
    2013-05-05
  • Kotlin封裝RecyclerView Adapter實(shí)例教程

    Kotlin封裝RecyclerView Adapter實(shí)例教程

    這篇文章主要給大家介紹了關(guān)于Kotlin封裝RecyclerView Adapter的相關(guān)資料,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2018-08-08
  • Android 創(chuàng)建依賴(lài)庫(kù)的方法(保姆級(jí)教程)

    Android 創(chuàng)建依賴(lài)庫(kù)的方法(保姆級(jí)教程)

    這篇文章主要介紹了Android 創(chuàng)建依賴(lài)庫(kù)的方法(保姆級(jí)教程),本文通過(guò)圖文并茂的形式給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2021-01-01
  • Android招聘面試題解答

    Android招聘面試題解答

    Android招聘面試題答案
    2013-11-11
  • Flutter runApp GestureBinding使用介紹

    Flutter runApp GestureBinding使用介紹

    這篇文章主要為大家介紹了Flutter runApp GestureBinding使用介紹,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪
    2022-12-12
  • Android自定義View多種效果解析

    Android自定義View多種效果解析

    這篇文章主要為大家詳細(xì)介紹了Android自定義View多種效果,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2018-05-05
  • Android中Window的管理深入講解

    Android中Window的管理深入講解

    這篇文章主要給大家介紹了關(guān)于Android中Window管理的相關(guān)資料,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)各位Android開(kāi)發(fā)者們具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2019-08-08
  • 基于Flutter實(shí)現(xiàn)圖片選擇和圖片上傳

    基于Flutter實(shí)現(xiàn)圖片選擇和圖片上傳

    Flutter?的圖片選擇插件很多,包括了官方的?image_picker,multi_image_picker(基于2.0出了?multi_image_picker2)等等。本文將利用這些插件實(shí)現(xiàn)圖片選擇和圖片上傳,需要的可以參考一下
    2022-03-03
  • Android通過(guò)多點(diǎn)觸控的方式對(duì)圖片進(jìn)行縮放的實(shí)例代碼

    Android通過(guò)多點(diǎn)觸控的方式對(duì)圖片進(jìn)行縮放的實(shí)例代碼

    這篇文章主要介紹了Android通過(guò)多點(diǎn)觸控的方式對(duì)圖片進(jìn)行縮放的實(shí)例代碼,完成了點(diǎn)擊圖片就能瀏覽大圖的功能,并且在瀏覽大圖的時(shí)候還可以通過(guò)多點(diǎn)觸控的方式對(duì)圖片進(jìn)行縮放。
    2018-05-05
  • Kotlin標(biāo)準(zhǔn)函數(shù)與靜態(tài)方法基礎(chǔ)知識(shí)詳解

    Kotlin標(biāo)準(zhǔn)函數(shù)與靜態(tài)方法基礎(chǔ)知識(shí)詳解

    Kotlin中的標(biāo)準(zhǔn)函數(shù)指的是Standard.kt文件中定義的函數(shù),任何Kotlin代碼都可以自由地調(diào)用所有的標(biāo)準(zhǔn)函數(shù)。例如let這個(gè)標(biāo)準(zhǔn)函數(shù),他的主要作用就是配合?.操作符來(lái)進(jìn)行輔助判空處理
    2022-11-11

最新評(píng)論

安西县| 彭泽县| 长寿区| 周至县| 安丘市| 贡觉县| 东乡族自治县| 华蓥市| 台南市| 乐亭县| 绥中县| 邢台县| 甘孜| 新丰县| 沛县| 河池市| 榆树市| 普安县| 新蔡县| 张掖市| 星子县| 武川县| 涟源市| 临潭县| 天镇县| 玉山县| 石河子市| 丽水市| 密云县| 宜春市| 柳林县| 潍坊市| 湘潭县| 井研县| 扎囊县| 扎兰屯市| 获嘉县| 石城县| 麻阳| 台中县| 临城县|