有谁知道如何将TextInputLayout从浅色主题更改为深色主题,如下面链接的设计规范所示?
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</android.support.design.widget.TextInputLayout>发布于 2020-07-07 03:37:34
我建议使用材质设计库,如下所述:
https://material.io/develop/android/components/text-fields
然后让你的应用主题扩展一些使用黑暗模式的主题。例如:
<style name="AppTheme" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
<!-- Customize your theme here. -->
</style>https://stackoverflow.com/questions/34248045
复制相似问题