- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在模拟器上安装了API 22,并注意到ListPreferences和Preferences中的RadioButtons和Buttons没有更改为Styles文件中规定的正确颜色。在 API >22 上它工作正常。此问题仅发生在 SettingsActivity 中使用的 PreferenceScreen 中。
我想要的颜色是#76B900(绿色)
我得到的是默认的Android浅蓝色颜色
主题已在 list 中注册:
<activity
android:name="com.Test.App.SettingsActivity"
android:label="@string/title_activity_settings"
android:windowSoftInputMode="adjustPan"
android:theme="@style/PreferencesTheme"
android:screenOrientation="portrait"/>
首选项主题 (styles.xml):
<style name="PreferencesTheme" parent="Theme.AppCompat">
<item name="android:windowBackground">@color/background</item>
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="android:textColorPrimary">@color/primaryText</item>
<item name="android:textColorSecondary">@color/settingsSubtext</item>
<item name="android:colorBackground">@color/background</item>
<item name="android:textColorPrimaryInverse">@color/primaryText</item>
</style>
首选项主题(styles.xml (v21)):
<style name="PreferencesTheme" parent="Theme.AppCompat">
<item name="android:windowBackground">@color/background</item>
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="android:textColorPrimary">@color/primaryText</item>
<item name="android:textColorSecondary">@color/settingsSubtext</item>
<item name="android:colorBackground">@color/background</item>
<item name="android:textColorPrimaryInverse">@color/primaryText</item>
<item name="android:colorAccent">@color/colorAccent</item>
</style>
颜色(colors.xml):
<color name="colorPrimary">#0F0F0F</color> - Black
<color name="colorPrimaryDark">#000000</color> - Black
<color name="colorPrimaryLight">#C8E6C9</color> - Light Green
<color name="colorAccent">#76B900</color> - Green
<color name="primaryText">#FFFFFF</color> - White
<color name="secondaryText">#757575</color> - Gray
<color name="background">#333333</color> - Dark Gray
颜色或样式文件中的任何位置均未设置默认的 Android 浅蓝色。
最佳答案
我也遇到了类似的问题。
将其添加到您的样式文件中:
<style name="AlertDialogCustom" parent="android:Theme.Material.Dialog.Alert">
<item name="colorAccent">@color/colorAccent</item>
<item name="android:colorAccent">@color/colorAccent</item>
</style>
将此添加到您的 PreferenceTheme
样式中:
<item name="android:alertDialogTheme">@style/AlertDialogCustom</item>
按钮现在应该采用正确的 colorAccent
颜色。
关于java - PreferenceScreen 中的 ColorAccent 在 API <=22 中无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54541308/
我的应用程序中有一个标准的首选项页面。但是,当用户按下“管理收藏夹”时,我希望用户能够从这个首选项页面导航到另一个具有自定义布局的 PreferenceScreen。 这是我想到的自定义布局: 是否可
我正在以编程方式创建一组嵌套的 PreferenceScreen。当用户进入其中一个屏幕并点击其中的某个内容时,我想返回到之前的 PreferenceScreen(即“父级”)。 我找不到这方面的任何
我的应用以 API 28 为目标,并且至少有 API 15。作为支持库,我使用的是 AndroidX。 我有一个由 Activity 托管的偏好 fragment ,如下所示: SettingsFra
我遇到了以下(小但烦人!)问题:我有一个 PreferenceActivity,其 XML 偏好层次结构定义带有“sub PreferenceScreens”,即。 e.顶级 PreferenceSc
迁移到 AndroidX 并将目标 SDK 升级到 28 后,我的 SettingsPage 丢失了 PreferenceScreen 组件之间的分隔线,并且文本未左对齐。谁能帮忙? `
我是 Android 开发新手。我在我的 Android 应用程序中开发了一个首选项 Activity 。我想要一个 Preference 来打开一个常规的 Activity。我在我的 XML 文件中
PreferenceScreen 对我来说不够好,因为我必须向 Spinner 添加项目。这些项目需要来自数据列表。 我有一个自定义的 ArrayAdapter,它会在我单击它时返回项目的名称。它返回
我正在尝试构建一个测试,以使用 Espresso 验证我的 PreferenceScreen View 。我要单击的文本位于底部。那么如何使用 Espresso 在 PreferenceScreen
我从 the android documentation 得到以下代码 Android Studio 给我一个错误,说我在 PreferenceScreen 标签上缺少高度和
我创建了以下自定义首选项屏幕。 我想在 Button1 和 Button2 上添加监听器。我应该怎么做? 我正在使用以下代码创建上述首选项屏幕。 演示首选项: import android.app.A
我想去掉首选项 Activity 和所有子屏幕中的顶部标题栏。我现在面临的问题不是发生在果冻 bean 上,而是发生在旧版本上。如果我无法删除它,我想更改它的行为,以便子屏幕中的标题不会从列表项中转移
我有一个 xml 文件,它定义了一些偏好屏幕,如下例所示 .... 我希望能够增加首选项屏幕文本的字体大小,但是因为在首选项屏幕中没有 android:textsiz
我不知道如何在 PreferenceScreen 中实现向上按钮。向上按钮在您的应用程序图标旁边的操作栏中显示一个插入符号,允许您导航应用程序的层次结构,更多信息 here . 我有一个首选项 fra
我正在尝试创建一个 PreferenceScreen,但我希望 Activity 设计与整个项目一样。 如何创建自定义 PreferenceScreen 设计? 最佳答案 是的,这是可行的。为布局道歉
我的 PreferenceScreen 标题很长,尤其是在某些语言中。我可以为 CheckBoxPreference 或 ListPreference 设置多行标题: Android preferen
我在我的首选项屏幕上添加了一个小部件布局,显示一个箭头图标,以向用户表明在给定的 PreferenceScreen 后面还有更多首选项。 但是,我注意到当未启用 PreferenceScreen 时它
我有一个preferencescreen 页面只用于显示数据而不保存它用于设置 代码如下 现在我想知道如何
我正在运行时创建一个 PreferenceScreen。但是在尝试滚动时屏幕停电。 ListView有一个状态可以避免这种情况, android:cacheColorHint="@android:co
下面是首选项屏幕的截图: 我还包括布局和 java 代码: layout/toolbar.xml layout/activity_settings.xml xml/fragment
我找到了一种解决方法来实际启用嵌套 PreferenceScreen 上的 ActionBar 主页按钮...但是它不会在我的 PreferenceActivity 中调用 OnOptionsItem
我是一名优秀的程序员,十分优秀!