91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

怎么在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

安国市| 乐至县| 余姚市| 木里| 邵东县| 夏津县| 台东县| 璧山县| 大同市| 清远市| 霍城县| 安义县| 浪卡子县| 高清| 武川县| 德清县| 松原市| 平和县| 蒙城县| 赤壁市| 南汇区| 新宾| 娄烦县| 定兴县| 古浪县| 弥勒县| 湖南省| 周宁县| 湾仔区| 扶绥县| 和顺县| 区。| 信阳市| 紫云| 绥中县| 青海省| 肥西县| 开阳县| 保亭| 龙井市| 惠水县|