TextView 设置粗体字

来源:互联网 发布:季后赛数据 编辑:程序博客网 时间:2024/05/21 07:51

使用 textStyle 来设置即可,如下:

<TextView        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_gravity="left"        android:layout_marginLeft="15dp"        android:text="粗体字"        android:textColor="#a5d814"        android:textSize="19sp"        android:textStyle="bold" />
1 0