Android:如何以编程方式检查 TextView 是粗体还是斜体 [英] Android: How to check if TextView is bold or italic programatically

查看:19
本文介绍了Android:如何以编程方式检查 TextView 是粗体还是斜体的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想知道如何构造一个 if 语句来检查 TextView 是粗体还是斜体.请帮忙.谢谢你.

I would like to know how to construct an if statement to check if a TextView is bold or italic. Please help. Thank you.

推荐答案

http:///developer.android.com/reference/android/widget/TextView.html#getTypeface()

public Typeface getTypeface ()

返回:

当前显示文本的字体和样式.

the current typeface and style in which the text is being displayed.

if(yourTextViewInstance.getTypeface()!=null){
   if(yourTextViewInstance.getTypeface().getStyle()==Typeface.BOLD || yourTextViewInstance.getTypeface().getStyle()==Typeface.ITALIC){
      //do your stuff
   }
}

这篇关于Android:如何以编程方式检查 TextView 是粗体还是斜体的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆