首页 > 代码库 > Android学习笔记之Theme主题的修改设置
Android学习笔记之Theme主题的修改设置
(1)布局文件
<RelativeLayout 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:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" tools:context=".MainActivity" > <!-- 普通的样式使用方法 --> <TextView android:id="@+id/textView2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignLeft="@+id/textView1" android:layout_below="@+id/textView1" android:layout_marginTop="31dp" android:text="@string/hello_world" /> <!-- 自定义的样式使用方法 --> <TextView android:id="@+id/textView1" style="@style/CodeFont.RED.BIG" android:text="@string/hello_world" /> <Button android:id="@+id/button1" style="@style/buttonStyle" android:layout_alignLeft="@+id/textView2" android:layout_centerVertical="true" android:text="Button" android:textColor="@color/textColor" /> </RelativeLayout>
(2)在values中新建xml文件
<?xml version="1.0" encoding="utf-8"?> <resources xmlns:android="http://schemas.android.com/apk/res/android"> <style name="CodeFont" parent="@android:style/TextAppearance.Medium"> <item name="android:layout_width">fill_parent</item> <item name="android:layout_height">wrap_content</item> <item name="android:typeface">monospace</item> </style> <style name="CodeFont.RED"> <item name="android:textColor">#00FF00</item> </style> <style name="CodeFont.RED.BIG"> <item name="android:textSize">20sp</item> </style> <style name="buttonStyle"> <item name="android:textColor">#00FF00</item> <item name="android:layout_width">wrap_content</item> <item name="android:layout_height">wrap_content</item> <item name="android:layout_marginTop">48dp</item> <item name="android:layout_marginLeft">148dp</item> </style> <color name="textColor">#ACBDEC</color> <!-- 自定义主题 需要在清单文件中修改Android默认的主题 --> <color name="custom_theme_color">#b0b0ff</color> <style name="CustomTheme" parent="android:Theme.Light"> <item name="android:windowBackground">@color/custom_theme_color</item> <item name="android:colorBackground">@color/custom_theme_color</item> </style> </resources>
(3)如果要修改Android默认的主题需要在清单文件中修改,下图圈出的位置就是需要修改的地方
(4)其他问阿金都可以默认无需修改!
Android学习笔记之Theme主题的修改设置
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。