美文网首页
去除TextView内边距

去除TextView内边距

作者: 心安1989 | 来源:发表于2019-04-29 17:12 被阅读0次

    android:includeFontPadding="false"
    如下:

    <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@color/colorPrimary"
            android:text="Hello"
            android:textSize="50sp"
            android:includeFontPadding="false"/>
    

    相关文章

      网友评论

          本文标题:去除TextView内边距

          本文链接:https://www.haomeiwen.com/subject/ftkunqtx.html