Android的:如何检查是否TextView的是粗体或斜体编程 [英] Android: How to check if TextView is bold or italic programatically

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

问题描述

我想知道如何构建一个if语句来检查,如果一个TextView是粗体或斜体。请帮忙。谢谢。

解决方案

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

 公共字样getTypeface()
 

收益:

  

显示目前所处的字体和样式的文本。

 如果(yourTextViewInstance.getTypeface()!= NULL){
   如果(yourTextViewInstance.getTypeface()。对getStyle()== Typeface.BOLD || yourTextViewInstance.getTypeface()。对getStyle()== Typeface.ITALIC){
      //做你的东西
   }
}
 

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 ()

returns:

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天全站免登陆