创建style和修改style

时间:2023-03-09 19:10:14
创建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>