真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

如何在Android中使用TextView實(shí)現(xiàn)詞組高亮-創(chuàng)新互聯(lián)

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

夷陵ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場景,ssl證書未來市場廣闊!成為創(chuàng)新互聯(lián)公司的ssl證書銷售渠道,可以享受市場價格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:13518219792(備注:SSL證書合作)期待與您的合作!

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:

Methods:

method 方法description 描述
setDefaultColor(int color)設(shè)置默認(rèn)顯示顏色
setHighlightColor(int color)設(shè)置高亮顏色
setDisplayedText(String text, List 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é)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。


新聞標(biāo)題:如何在Android中使用TextView實(shí)現(xiàn)詞組高亮-創(chuàng)新互聯(lián)
分享地址:http://weahome.cn/article/dopiid.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部