gpt4 book ai didi

android - 如何在 TextInputLayout 的密码切换按钮上禁用涟漪效应

转载 作者:行者123 更新时间:2023-12-05 00:00:01 30 4
gpt4 key购买 nike

我使用 TextInputLayout 来显示密码切换按钮。它正在工作,但涟漪效果在 EditText 的背景后面(我为 EditText 使用可绘制背景)。如何禁用密码按钮的波纹效果或将波纹置于 EditText 背景前面?这里是演示问题的录制视频https://imgur.com/nYOB6Ye .

<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="25dp"
app:hintEnabled="false"
app:passwordToggleEnabled="true">

<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/bg_edit"
android:hint="••••••"
android:inputType="textPassword"
android:padding="18dp" />
</com.google.android.material.textfield.TextInputLayout>

最佳答案

这不是出色的解决方案,但它对我有用。
Material 版本:1.1.0

科尔廷:

textInputLayout.apply {
findViewById<View>(R.id.text_input_end_icon).setBackgroundColor(
ResourcesCompat.getColor(resources, R.color.transparent, theme)
)
}
R.id.text_input_end_icon是通过 Layout Inspector 找到的

关于android - 如何在 TextInputLayout 的密码切换按钮上禁用涟漪效应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58223572/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com