android样式和主题

style  控件

//相当于html里面的css

  <TextView
        style="@style/test_style"
        android:text="@string/hello" />

//把共有的配置抽取出来,作为样式

 <style name="test_style">
        <item name="android:layout_width">wrap_content</item>
        <item name="android:layout_height">wrap_content</item>
        <item name="android:textSize">18sp</item>
        <item name="android:textColor">#ff66ff00</item>
    </style>

    <style name="test_style1" parent="@style/test_style">
        <item name="android:textSize">28sp</item>
    </style>

主题:

theme  activity上 风格 文字白色  北京黑色

<activity android:theme=“@android:style/Theme.Dialog”>

透明主题:@android:style/Theme.Translucent

setTheme(R.style.itcastTheme);

自定义主题分两步

1

<?xml version="1.0" encoding="utf-8"?>
<resources>

    <string name="hello">Hello World, DemoActivity!</string>
    <string name="app_name">Theme</string>

    <style name="mytheme" parent="@android:style/Theme.NoTitleBar.Fullscreen">
        <item name="android:background">@color/red</item>
    </style>

    <color name="red">#FFFF0000</color>

</resources>
2
 <application
       android:theme="@style/mytheme"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" >




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值