以编程方式更改TextStyle

时间:2018-11-07 05:57:27

标签: java android xml android-studio styles

insertAsset

我可以为textColor和size执行此操作,但是@Override protected void onBindViewHolder(@NonNull final Chat.MessagesViewHolder holder, final int position, @NonNull final MessagesHelper model) { holder.mDisplayText.setBackgroundColor(BackgoundColorSent); } 没有方法。我正在使用textStyle,并希望根据用户的需要以编程方式更改recyclerView项目的firebaseRecyclerAdapter

2 个答案:

答案 0 :(得分:0)

最好使用xml文件“ textStyle()”中的命令更改texstyle。

您需要在itemview中更改其布局。

希望我能为您提供帮助。

enter image description here

答案 1 :(得分:0)

您可以使用setTypeface将样式应用于文本

textView.setTypeface(Typeface.BOLD_ITALIC);

可以使用的其他字体为:

  1. Typeface.BOLD
  2. Typeface.NORMAL
  3. Typeface.SANS_SERIF
  4. Typeface.MONOSPACE
  5. Typeface.ITALIC