zoukankan      html  css  js  c++  java
  • 创建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>
  • 相关阅读:
    2 实现第一个Django网站 博客
    jeecms支持的freemaker标签大全
    dao 获取表最大排序实现
    spring对数据库特殊字段的支持
    hibernate id生成器配置
    Long与long的比较
    jquery validation ajax 验证
    swfupload用法总结
    oracle对序列的操作
    jquery.layout框架分割线
  • 原文地址:https://www.cnblogs.com/rookiechen/p/5316700.html
Copyright © 2011-2022 走看看