创建style和修改style

Posted 技术丶从积累开始

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了创建style和修改style相关的知识,希望对你有一定的参考价值。

1.创建style

在res/values/styles.xml中设置style

根元素<resource>

子元素:<style> 属性:name:样式的名称 parent:样式继承的父类

<style>的子元素 <item> :定义一个格式项

<style name="test_style">
    <item name="android:background">#000</item>
    <item name="android:progress">@mipmap/demo</item>
</style>

2.修改style(自己创建的和android自带的)

<!--修改自己的style-->
<style name="test_style1" parent="test_style">
   <item name="android:background">#fff</item>
</style>
<!--修改android自带的Theme-->
<style name="test_style3" parent="Theme.AppCompat.Dialog">
   <item name="android:background">#ccc</item>
</style>

3.使用Style

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context="com.chen.android.test.MainActivity">

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        style="@style/test_style"/>
</LinearLayout>

 

以上是关于创建style和修改style的主要内容,如果未能解决你的问题,请参考以下文章

在 IE8 中修改 <style> 元素的 innerHTML

主题不适用于片段

WPF中是不是只能通过改代码来修改Style?

如何修改element.style内联样式;

如何修改element.style内联样式;

如何修改element.style样式