TextInputLayout指向顶部

时间:2015-10-16 13:36:56

标签: android material-design android-support-library android-design-library android-support-design

TextInputLayout在support-library版本23.1.0中引入了一个很好的计数器函数 - 不幸的是,浮动提示在layout_height中变得非常高。 有没有办法将计数器带到顶部(与浮标相同的高度?)

1 个答案:

答案 0 :(得分:5)

目前你无法做到。

TextInputLayout跟随材料指导线,计数器位于底部 检查代码,您只能自定义这些规范:

  • enable counter也可用于xml属性android.support.design:counterEnabled

  • counter max lenght也可用于xml属性app:counterMaxLength。 (此attr目前不在官方文档中。您可以查看此post

enter image description here