我想要密码切换功能,似乎TextInputLayout
具有该功能,而不是TextInputEditText
。但是,当您看到下面的代码时,即使我将高度设置为wrap_content
和app:hintEnabled="false"
,如果TextInputEditText
位于TextInputEditText
,TextInputLayout
的高度也会变高}。将其与TextInputEditText
之外TextInputLayout
的高度进行比较。
由于我不使用该提示动画,因此TextInputLayout
无需增加TextInputEditText
的高度。如何阻止TextInputLayout
增加TextInputEditText
的高度?
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
tools:context=".MainActivity">
<EditText
android:layout_width="300dp"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="121dp"
android:background="#66FF0000"
android:text="Normal EditText"
android:inputType="textEmailAddress"/>
<android.support.design.widget.TextInputLayout
android:layout_width="300dp"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="196dp"
app:hintEnabled="false"
app:passwordToggleEnabled="true">
<android.support.design.widget.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#660000FF"
android:hint="TextInputEditText inside TextInputLayout"
android:inputType="textPassword"/>
</android.support.design.widget.TextInputLayout>
<android.support.design.widget.TextInputEditText
android:layout_width="300dp"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:background="#6600FF00"
android:hint="TextInputEditText"
android:inputType="textPassword"/>
</RelativeLayout>
答案 0 :(得分:0)
到目前为止,我发现的唯一解决方案是将android:layout_height
设置为固定大小。例如40dp。