android– 将默认设计主题更改为自定义颜色

android– 将默认设计主题更改为自定义颜色,第1张

概述我是AndroidStudio的新手.作为初学者,我创建了一个简单的应用程序,仅用于测试目的并查看Androidstudio材料主题的外观.我目前正在使用最新版本即.L预览–Studio0.8.2版本.在这里,我刚刚创建了textview,edittext,单选按钮和复选框.当我选择男性或女性时,它显示为天蓝色.我可

我是Android Studio的新手.作为初学者,我创建了一个简单的应用程序,仅用于测试目的并查看AndroID studio材料主题的外观.我目前正在使用最新版本即. L预览 – Studio 0.8.2版本.

在这里,我刚刚创建了textvIEw,edittext,单选按钮和复选框.当我选择男性或女性时,它显示为天蓝色.我可以将天蓝色改为绿色或黄色吗?

我不知道这是什么名字.从图片中可以看到edittext,单选按钮和复选框选中状态为天蓝色.当我尝试单击或选择任何内容时,那些复选框或单选按钮需要从默认颜色更改为其他颜色,如绿色或黄色!

在res / values / styles.xml中,

<resources><!-- Base application theme. --><color name="custom_theme_color">#b0b0ff</color><style name="Customtheme" parent="androID:theme.Material"><item name="androID:colorBackground">@color/custom_theme_color</item></style></resources>

在AndroID Studio Manifest.xml中,

androID:theme="@style/Customtheme" >

还有其他可能从默认天蓝色变为绿色或黄色或紫色吗?

有没有其他方法可以将默认天蓝色主题更改为其他颜色,如粉红色或绿色?

我想学习,所以请给我一些关于如何做到这一点的建议?

解决方法:

第一种方法:

在res / values-v21 / styles.xml中,

<style name="Apptheme" parent="androID:theme.Material.light.DarkActionbar">    <item name="androID:colorAccent">@color/custom_theme_color</item>    <item name="androID:colorPrimaryDark">@color/custom_theme_color</item>    <item name="androID:colorPrimary">@color/custom_theme_color</item></style>

上面的代码很简单,运行良好.在AndroID工作室中,它可以从默认的天蓝色更改为任何其他颜色,如粉红色或绿色!

第二种方法:

在xml下创建3个文件即. res / xml,例如checked.xml,unchecked.xml和custom_checkBox.xml

checked.xml

<shape xmlns:androID="http://schemas.androID.com/apk/res/androID"><stroke androID:wIDth="2px" androID:color="#FF00FF" /><size androID:height="20dp" androID:wIDth="20dp"/></shape>

unchecked.xml

<shape xmlns:androID="http://schemas.androID.com/apk/res/androID"><stroke androID:wIDth="2px" androID:color="#ffc0c0c0" /><size androID:height="20dp" androID:wIDth="20dp"/></shape>

custom_checkBox.xml

<?xml version="1.0" enCoding="utf-8"?><selector xmlns:androID="http://schemas.androID.com/apk/res/androID"><item androID:state_checked="true"       androID:drawable="@xml/checked" /> <item androID:state_pressed="true"      androID:drawable="@xml/checked" /> <item androID:drawable="@xml/unchecked" /> </selector>

从上面的第二种方法,它(自定义文件)也可以根据我们的要求创建任何形状和颜色.甚至我们也可以使用第二种方法自定义小部件的样式,形状和主题.

以上两种方法对我来说都很好!

总结

以上是内存溢出为你收集整理的android – 将默认设计主题更改为自定义颜色全部内容,希望文章能够帮你解决android – 将默认设计主题更改为自定义颜色所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1120231.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-29
下一篇 2022-05-29

发表评论

登录后才能评论

评论列表(0条)

保存