我当前遇到了DatePickerDialog的一些问题。你可以在下面的屏幕上看到当前不可见或空白的电流,与选择环相同。
活动:
dialog = new DatePickerDialog(profilFragment.getActivity(), R.style.WeezyuTheme_DatePickerDialog, this,
year, month, day);
样式XML :
<style name="WeezyuTheme.DatePickerDialog" parent="Theme.AppCompat.Dialog">
<item name="colorAccent">#0f0</item>
<item name="colorPrimary">#f00</item>
<item name="colorPrimaryDark">#00f</item>
</style>
所以,如果你有任何想法解决它。
答案 0 :(得分:0)
不知道背后的原因但是如果你在colors.xml文件中应用这些颜色代码然后在这里引用这些颜色会更好。
像 在colors.xml文件中,将值更改为:
<color name="colorAccent">#0f0</color>
<color name="colorPrimary">#f00</color>
<color name="colorPrimaryDark">#00f</color>
然后将style.xml中的值更改为:
<style name="WeezyuTheme.DatePickerDialog" parent="Theme.AppCompat.Dialog">
<item name="colorAccent">@color/colorAccent</item>
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
</style>
希望这会有所帮助。