android系统自带的字体外观

来源:互联网 发布:生理学软件 编辑:程序博客网 时间:2024/04/29 22:24

字体设置xml片段

<TextView        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:text="没有Appearance" />    <TextView        android:textAppearance="?android:attr/textAppearance"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:text="textAppearance" />    <TextView        android:textAppearance="?android:attr/textAppearanceInverse"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:text="textAppearanceInverse" />    <TextView        android:textAppearance="?android:attr/textAppearanceButton"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:text="textAppearanceButton" />      <TextView        android:textAppearance="?android:attr/textAppearanceMedium"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:text="textAppearanceMedium" />    <TextView        android:textAppearance="?android:attr/textAppearanceMediumInverse"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:text="textAppearanceMediumInverse" />    <TextView        android:textAppearance="?android:attr/textAppearanceSmall"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:text="textAppearanceSmall" />    <TextView        android:textAppearance="?android:attr/textAppearanceSmallInverse"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:text="textAppearanceSmallInverse" />    <TextView        android:textAppearance="?android:attr/textAppearanceLarge"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:text="textAppearanceLarge" />    <TextView        android:textAppearance="?android:attr/textAppearanceLargeInverse"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:text="textAppearanceLargeInverse" />    <TextView        android:textAppearance="?android:attr/textAppearanceSmallPopupMenu"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:text="textAppearanceSmallPopupMenu" />    <TextView        android:textAppearance="?android:attr/textAppearanceLargePopupMenu"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:text="textAppearanceLargePopupMenu" />




0 0
原创粉丝点击