在将TextInputLayout
的高度设置为wrap_content
的任何其他值时,计数器消失,我也想将其与ConstraintLayout一起使用,将其高度设置为0dp
,计数器消失,并且顶部有此边距。可以将TextInputLayout
的高度设置为0dp
,并且计数器可见,并且顶部没有空白吗?
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<android.support.design.widget.TextInputLayout
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginBottom="50dp"
app:counterEnabled="true"
app:counterMaxLength="180"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<android.support.design.widget.TextInputEditText
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#2342"
android:gravity="top"
android:inputType="textMultiLine|textNoSuggestions" />
</android.support.design.widget.TextInputLayout>
</android.support.constraint.ConstraintLayout>
答案 0 :(得分:1)
我知道问题出在哪里,您可能不得不重新考虑布局设计。问题不是TextInputLayout,而是TextInputEditText。当您将TextInputEditText设置为与父对象匹配时,它与TextInputLayout的高度匹配,因此TextInputLayout中没有剩余空间来绘制计数器。因此,如果您将TextInputEditText的高度值更改为任何其他值,则会看到计数器。
我的建议是,您要么需要重新考虑设计的布局,要么必须根据活动窗口的可见高度以编程方式设置InputEditText的高度。