当TextInputLayout的app:passwordToggleEnabled
属性设置为true且TextInputEditText的android:enabled
属性设置为false时,如何防止密码切换ImageButton被单击?
<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="24dp"
android:hint="@string/password"
app:hintAnimationEnabled="true"
app:passwordToggleEnabled="true">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/edit_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textPassword"
android:maxLength="32"
android:maxLines="1"
android:enabled="false"/>
</com.google.android.material.textfield.TextInputLayout>
这是错误还是预期的行为?
答案 0 :(得分:1)
就像我在评论中提到的那样,解决您的问题的简单方法是将TextInputLayout
的setEnabled设置为false而不是TextInputEditText
。由于TextInputLayout
容纳TextInputEditText
,因此整个布局将被禁用。这是一个小演示:
TextInputLayout textInputLayout = findViewById(R.id.textInputLayout);
if(someCondition){
textInputLayout.setEnabled(false);
}
我希望这会有所帮助。.编码愉快!