溫馨提示×

溫馨提示×

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

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

如何在Android中使用TextView實(shí)現(xiàn)詞組高亮

發(fā)布時間:2021-04-08 17:11:43 來源:億速云 閱讀:262 作者:Leah 欄目:移動開發(fā)

這篇文章給大家介紹如何在Android中使用TextView實(shí)現(xiàn)詞組高亮,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

HighlightTextView

Android文本高亮控件,基于View實(shí)現(xiàn)。

特點(diǎn)

  1. 文本高亮

  2. 單詞自動換行

  3. 高亮詞組保持在同一行顯示

效果如下:

如何在Android中使用TextView實(shí)現(xiàn)詞組高亮

主要邏輯:

  1. 兩個 Paint 負(fù)責(zé)繪制不同的文字

  2. 在每次繪制之前計(jì)算將要繪制的文本是否會超出屏幕寬度,如果超出則換行

protected void onDraw(Canvas canvas) {
    super.onDraw(canvas);
    float x_draw = getPaddingLeft();
    float y_draw = getPaddingTop() + dfPaint.getTextSize();
    for (ExtendText t : extendTexts) {
      Paint paint = t.isHighlight ? hlPaint : dfPaint;
      float textLen = paint.measureText(t.textUnit);
      if (x_draw + textLen > width) {
        x_draw = getPaddingLeft();
        y_draw += paint.getTextSize();
      }
      canvas.drawText(t.textUnit, x_draw, y_draw, paint);
      x_draw += textLen;
    }
  }

Demo

Java:

public class MainActivity extends Activity {
  private final static String TEXT = "";
  private final static String[] HIGHLIGHT = {};

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    HighLightTextView hlTv = (HighLightTextView) findViewById(R.id.hlTv);
    hlTv.setDisplayedText(TEXT, Arrays.asList(HIGHLIGHT));
    hlTv.setDefaultColor(Color.BLACK);
    hlTv.setHighlightColor(ContextCompat.getColor(this, R.color.colorPrimary));

  }
}

XML:

<com.jy.highlighttextview.HighLightTextView
  android:id="@+id/hlTv"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:padding="5dp"
  app:textSize="16sp" />

Methods:

method 方法description 描述
setDefaultColor(int color)設(shè)置默認(rèn)顯示顏色
setHighlightColor(int color)設(shè)置高亮顏色
setDisplayedText(String text, List<String> highlights)設(shè)置顯示的文本和高亮詞組
setTextSize(float size)設(shè)置字體大小

xml value:

app:defaultColor="@color/colorPrimary"
app:highlightColor="@color/colorAccent"
app:text="@string/app_name"
app:textSize="16sp"

關(guān)于如何在Android中使用TextView實(shí)現(xiàn)詞組高亮就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI