如何更改textinputlayout中textinputedittext中的光标颜色
How to change the cursor color in textinputedittext inside textinputlayout
如何改变textinputedittext的光标颜色。
我使用了 textcursordrawable 但它不起作用。
提前致谢
如果只想改变光标颜色,可以使用:
<com.google.android.material.textfield.TextInputLayout
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
android:theme="@style/ThemeOverlay.AppTheme.TextInputEditText.Outlined"
....>
与:
<style name="ThemeOverlay.AppTheme.TextInputEditText.Outlined" parent="">
<item name="colorControlActivated">@color/...</item>
</style>
如果要更改光标颜色以及框、标签..
<style name="ThemeOverlay.AppTheme.TextInputEditText.Outlined" parent="">
<item name="colorPrimary">@color/...</item>
</style>
如何改变textinputedittext的光标颜色。
我使用了 textcursordrawable 但它不起作用。 提前致谢
如果只想改变光标颜色,可以使用:
<com.google.android.material.textfield.TextInputLayout
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
android:theme="@style/ThemeOverlay.AppTheme.TextInputEditText.Outlined"
....>
与:
<style name="ThemeOverlay.AppTheme.TextInputEditText.Outlined" parent="">
<item name="colorControlActivated">@color/...</item>
</style>
如果要更改光标颜色以及框、标签..
<style name="ThemeOverlay.AppTheme.TextInputEditText.Outlined" parent="">
<item name="colorPrimary">@color/...</item>
</style>