中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

怎么在Android中利用TextView調整文本內容的字體大小

發布時間:2020-11-30 16:54:01 來源:億速云 閱讀:450 作者:Leah 欄目:移動開發

這篇文章給大家介紹怎么在Android中利用TextView調整文本內容的字體大小,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

具體方法如下:

/** 
 * 自定義TextView,文本內容自動調整字體大小以適應TextView的大小 
 * @author yzp 
 */ 
public class AutoFitTextView extends TextView { 
  private Paint mTextPaint; 
  private float mTextSize; 
  public AutoFitTextView(Context context) { 
    super(context); 
  } 
  public AutoFitTextView(Context context, AttributeSet attrs) { 
    super(context, attrs); 
  } 
  /** 
   * Re size the font so the specified text fits in the text box assuming the 
   * text box is the specified width. 
   * 
   * @param text 
   * @param textWidth 
   */ 
  private void refitText(String text, int textViewWidth) { 
    if (text == null || textViewWidth <= 0) 
      return; 
    mTextPaint = new Paint(); 
    mTextPaint.set(this.getPaint()); 
    int availableTextViewWidth = getWidth() - getPaddingLeft() - getPaddingRight(); 
    float[] charsWidthArr = new float[text.length()]; 
    Rect boundsRect = new Rect(); 
    mTextPaint.getTextBounds(text, 0, text.length(), boundsRect); 
    int textWidth = boundsRect.width(); 
    mTextSize = getTextSize(); 
    while (textWidth > availableTextViewWidth) { 
      mTextSize -= 1; 
      mTextPaint.setTextSize(mTextSize); 
      textWidth = mTextPaint.getTextWidths(text, charsWidthArr); 
    } 
    this.setTextSize(TypedValue.COMPLEX_UNIT_PX, mTextSize); 
  } 
  @Override 
  protected void onDraw(Canvas canvas) { 
    super.onDraw(canvas); 
    refitText(this.getText().toString(), this.getWidth()); 
  } 
}

關于怎么在Android中利用TextView調整文本內容的字體大小就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

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

AI

海原县| 蒲江县| 太康县| 甘泉县| 宜宾市| 桃源县| 禄丰县| 周至县| 南充市| 淳安县| 泸西县| 阿克苏市| 金寨县| 彭阳县| 深州市| 马山县| 和田县| 手游| 调兵山市| 上蔡县| 自贡市| 湘潭市| 雷州市| 西林县| 德庆县| 阿拉善右旗| 靖安县| 临海市| 岢岚县| 曲松县| 东乡县| 吉林省| 攀枝花市| 汶川县| 望谟县| 望江县| 赣榆县| 桐柏县| 通城县| 普宁市| 枣强县|