gpt4 book ai didi

android - 如何使 TextInputEditText 只读?

转载 作者:行者123 更新时间:2023-11-29 16:30:57 25 4
gpt4 key购买 nike

我正在尝试将 TextInputEditText 设置为只读,但我发现光标快速闪烁并触发了点击。

我尝试设置 isFocusable = falseisClickable = false

XML 布局:

<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/label_address"
android:layout_marginTop="@dimen/material_layout_vertical_spacing_between_content_areas"
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox">

<com.google.android.material.textfield.TextInputEditText
android:id="@+id/input_address"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:imeOptions="actionNext"/>

</com.google.android.material.textfield.TextInputLayout>

设置为只读的代码:

fun TextInputEditText.disable() {
isFocusable = false
isClickable = false
}

将 TextInputEditText 设置为只读的正确方法是什么?

最佳答案

在 XML 中

TextInputEditText 中设置属性 android:enable="false"

代码

<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Hints"
android:layout_marginTop="10dp"
android:layout_margin="40dp">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/input_address"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:enabled="false"
android:imeOptions="actionNext"
android:text="Hi How are you"
android:textColor="@color/colorPrimary"
android:textColorHint="@color/colorPrimary" />
</com.google.android.material.textfield.TextInputLayout>

结果:

enter image description here

关于android - 如何使 TextInputEditText 只读?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55626693/

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