更改文本输入布局计数器的颜色



我正在尝试更改TextInputLayout的计数器的颜色

我试过公认的答案,但都不起作用。

https://stackoverflow.com/a/33880925/11110509

<com.google.android.material.textfield.TextInputLayout
android:id="@+id/til_custom_msg"
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginBottom="16dp"
android:hint="Message"
app:counterEnabled="true"
app:counterMaxLength="300"

//Accepted answer one
app:counterTextAppearance="@android:color/white">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/et_custom_msg"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="@color/colorWhite" />
</com.google.android.material.textfield.TextInputLayout>

接受答案二:

https://stackoverflow.com/a/41257235/11110509

<style name="CounterStyle" parent="TextAppearance.AppCompat.Small">
<item name="android:textColor">@android:color/white</item>
<!--other parameters that you want to change -->
</style>

app:counterTextAppearance="@style/CounterStyle"

这个问题可能是因为我的TextInputLayout使用了材料版本

<com.google.android.material.textfield.TextInputLayout

他们使用支持

<android.support.design.widget.TextInputLayout

如果是,我如何使用Material一?

只需使用

'app:counterTextColor="YOUR_PREFERRED_COLOR"'

资源:CounterTextColor

相关内容

  • 没有找到相关文章

最新更新