本文主要是介绍Android style(样式), theme(主题)资源,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
本文内容摘自《疯狂Android讲义 第三版-李刚著作》
样式和主题资源都用于对Android应用进行“美化”,只要充分利用Android应用的样式和主题资源,开发者就可以开发出各种风格的Android应用。
样式资源(style):
如果我们经常需要对某个类型的组件指定大致相似的格式,比如字体,颜色,背景色等,如果次都要为View组件重复指定这些属性,无疑会有大量的工作量,而且不利于项目后期维护。
一个样式相当于多个格式的集合,其他UI组件通过style属性来指定样式,这样就相当于把样式所包含的所有格式同时应用于该UI组件。
Android样式资源文件也是入在/res/values/目录下,样式资源文件的根元素是<resources.../>元素,该元素内可包含多个<style.../>子元素,每个<style.../>
子元素定义一个样式。<style.../>指定两个属性 name:指定样式的名称,parent:指定该样式所继承的父样式。当继承某个父样式时,该样式将会获得父样式中定义的全部格式,当前样式也可以覆盖父样式中指定的格式。
<style.../>元素内可包含多个<item.../>子元素,每个<item../>子元素定义一个格式。
<resources><style name="my_stly1" ><item name="android:textColor">#012</item><item name="android:background">#22551122</item></style><style name="my_styl2" parent="my_stly1"><item name="android:padding">12db</item><item name="background">#00FF55</item></style><!-- Base application theme. --><style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar"><!-- Customize your theme here. --><item name="colorPrimary">@color/colorPrimary</item><item name="colorPrimaryDark">@color/colorPrimaryDark</item><item name="colorAccent">@color/colorAccent</item></style><style name="FullscreenTheme" parent="AppTheme"><item name="android:actionBarStyle">@style/FullscreenActionBarStyle</item><item name="android:windowActionBarOverlay">true</item><item name="android:windowBackground">@null</item><item name="metaButtonBarStyle">?android:attr/buttonBarStyle</item><item name="metaButtonBarButtonStyle">?android:attr/buttonBarButtonStyle</item></style><style name="FullscreenActionBarStyle" parent="Widget.AppCompat.ActionBar"><item name="android:background">@color/black_overlay</item></style><style name="AppTheme.NoActionBar"><item name="windowActionBar">false</item><item name="windowNoTitle">true</item></style><style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" /><style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" /></resources>
<TextViewandroid:layout_width="150dp"android:layout_height="150dp"style="@style/my_stly1"/><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"style="@style/my_styl2"/>
主体资源(Theme):
与样式资源相似,主题资源的XML文件通常也是放在/res/values/目录下,主题资源的XML文件同样以<resources.../>元素作为根元素,同样使用<style.../>元素来定义主题。
主题与样式资的主要区别是:
1.主题不能作用于单个View组件,主体应该对整个应用中的所有Activity起作用,或对指定的Activity起作用。
2.主题定义的格式应该是改变窗口外观的格式,例如窗口标题,窗口边框等。
<resources><style name="my_theme1"><item name="android:windowNoTitle">true</item><item name="android:windowFullscreen">true</item><item name="android:windowFrame">@drawable/my_shape_1</item><item name="android:windowBackground">@drawable/layout_logo</item></style>
</resources>
定义了上面的主题之后,接下来即可在JAVA代码中体用主题:
public class ThemeDemoActivity extends AppCompatActivity {@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setTheme(R.style.my_theme1);
}
}
大部分时候,在AndoridManifest.xml文件中指定应用,指定Activity应用主题更加简单。如果我们想让应用中全部窗口使用该主题,
那么只要在<application.../>元素添加android:theme属性即可。
<application android:theme="@style/my_theme1">
...
</application>
如果只是想让应用中的某个Activity拥有这个主题,那么可以修改<activity.../>元素,同样通过android:theme指定主题即可。
<activity android:theme="@android:style/Theme.Dialog">
...
</activity>
这篇关于Android style(样式), theme(主题)资源的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!