首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 其他相关 >

TextView中style的运用

2012-10-28 
TextView中style的应用TextView android:layout_widthfill_parentandroid:layout_heightwrap_conten

TextView中style的应用

<TextView android:layout_width="fill_parent"             android:layout_height="wrap_content"           android:text="Style"           style="@style/style1" />


styles.xml:
<resources><style name="style1"><item name="android:textSize">20sp</item><item name="android:textColor">#FFFF00</item></style><style name="style1.style2"><item name="android:gravity">center_horizontal</item></style><style name="style1.style2.style3"><item name="android:gravity">right</item><item name="android:textColor">#FF0000</item></style></resources>

热点排行