安卓编辑文本

发布于 2024-09-08 05:40:39 字数 217 浏览 2 评论 0原文

我正在使用编辑文本来支持粗体、斜体和下划线的属性。选择文本并单击粗体后我成功了,我的文本是粗体。现在我的要求是如何在选择文本后再次删除粗体并单击粗体按钮。

问候,

Bhavani.G


这不仅仅是设置标记来加粗并删除粗体。我们必须知道我们选择的文本是粗体,如果它是粗体,那么我们必须通过单击相同的按钮来删除粗体。问候

巴瓦尼

I am working with an edit text to support the properties of bold,italic and underline.I got succeed after selecting the text and clicking on bold my text was bold.Now what my requirement is how to remove the bold again after selecting the text and clicking on bold button.

Regards,

Bhavani.G


It is not simply setting the flag to do bold and remove the bold.We have to know the text we have selected is in bold and if it is bold then we have to remove the bold by clicking the same button..

Regards,

Bhavani

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

李不 2024-09-15 05:40:39

您需要保留一个粗体标志,以便您检查标志的当前状态并执行相反的操作。

像这样的事情:

Boolean isBold = false;
.
.
.
boldText()
{
  if(isBold){
      //unbold 
      setTypeface( <What you need> )
      isbold=false;
  }
  else {
      //bold 
      setTypeface( <What you need> )
      isbold=true;
  }
}

You need to keep a bold flag so that you check the current status of the flag and do the opposite.

Some thing like this:

Boolean isBold = false;
.
.
.
boldText()
{
  if(isBold){
      //unbold 
      setTypeface( <What you need> )
      isbold=false;
  }
  else {
      //bold 
      setTypeface( <What you need> )
      isbold=true;
  }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文