0
在android studio 2.3.3的調色板中,文本調色板僅爲我們提供「純文本」,而在youtube教程中,還提供了「小文本」,「大文本」 。那麼我們現在如何增加文字的大小呢?最新的android studio 2.3.3文本問題
在android studio 2.3.3的調色板中,文本調色板僅爲我們提供「純文本」,而在youtube教程中,還提供了「小文本」,「大文本」 。那麼我們現在如何增加文字的大小呢?最新的android studio 2.3.3文本問題
只需設置TextView
無論是在屬性設計標籤的一部分的fontSize
財產。
或XML使用android:textSize="20sp"
直接設置它。
<TextView
android:id="@+id/post_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingBottom="16dp"
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:textColor="@color/colorPrimaryDark"
android:textSize="20sp"
android:textStyle="bold"/