码迷,mamicode.com
首页 > 其他好文 > 详细

创建style和修改style

时间:2016-03-24 20:13:30      阅读:302      评论:0      收藏:0      [点我收藏+]

标签:

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

标签:

原文地址:http://www.cnblogs.com/rookiechen/p/5316700.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!