Android应用.国际化-屏幕适配-样式与主题
?
<?xml version="1.0" encoding="utf-8"?><resources><!-- 样式创建 --><style name="secn"><item name="android:textSize">18px</item><item name="android:textColor">#0000cc</item></style><!-- 样式继承 --><style name="parent" parent="@style/secn"><item name="android:textSize">33px</item></style><!--定义主题--><style name="secnTheme"><!-- 没有标题 --><item name="android:windowNoTitle">true</item><!-- 全屏显示 --><!-- 当样式和主题定义的样式相同时,以样式的定义为先 --><item name="android:textSize">88px</item><item name="android:windowFullscreen">?android:windowNoTitle</item></style></resources>
?