创建style和修改style

本文详细介绍了在Android开发中如何创建、修改和使用样式。包括在styles.xml中定义样式,修改自定义样式及Android系统样式,并展示了如何在布局文件中应用这些样式。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

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>

 

转载于:https://www.cnblogs.com/rookiechen/p/5316700.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值