Android:在Light中将EditText设置为Dark

问题描述 投票:0回答:2

我的应用程序设置为Light主题,我有一个标题设置为黑暗。是否可以在标题内使EditText在KitKat中以及之前具有Dark样式?它正在Lollipop btw工作

注意:我没有发布图像的声誉,所以这里是图像的链接

android styles
2个回答
0
投票

在.xml文件中,将这些行添加到EditText元素中

android:background="#000000"
android:textColor="#ffffff"

0
投票

如果您使用的是EditText(需要API> = 21)

android:backgroundTint="#FFF"

或者您可以使用android.support.v7.widget.AppCompatEditText

 app:backgroundTint="#FFF"

记得加

 xmlns:app="http://schemas.android.com/apk/res-auto"

到你的根视图

© www.soinside.com 2019 - 2024. All rights reserved.