gpt4 book ai didi

android - TextInputEditText - 使可点击但不可编辑

转载 作者:行者123 更新时间:2023-12-04 23:56:10 24 4
gpt4 key购买 nike

我有一个布局,我想在其中显示一堆编辑文本和一个日期选择器。因为我想对所有字段进行相同的设计,所以我发现我也需要为日期选择器使用编辑文本,但使其不可编辑但可点击。下面是我的编辑文本的 xml 代码,将用于显示日期选择器:

<com.google.android.material.textfield.TextInputLayout
android:id="@+id/notification_layout"
style="@style/Theme.Connect.InputFieldLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:startIconDrawable="@drawable/ic_stk_notification_24dp">

<com.google.android.material.textfield.TextInputEditText
android:id="@+id/notification_edit_text"
style="@style/Theme.Connect.InputField"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Notification"
android:maxLines="1"
android:lines="1"
android:cursorVisible="false"/>

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

我尝试了很多在互联网上找到的解决方案,我确实设法使编辑文本不可编辑,但没有涟漪点击效果。有没有办法让编辑文本不可编辑但仍然保持涟漪点击效果?这是显示包含表单布局设计的日期选择器的最佳做法吗?

最佳答案

 Try this and change the `android:focusable` attribute to `false`                       


<com.google.android.material.textfield.TextInputLayout
android:id="@+id/notification_layout"
style="@style/Theme.Connect.InputFieldLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:startIconDrawable="@drawable/ic_stk_notification_24dp">

<com.google.android.material.textfield.TextInputEditText
android:id="@+id/notification_edit_text"
style="@style/Theme.Connect.InputField"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Notification"
android:maxLines="1"
android:focusable="false"
android:lines="1"
android:cursorVisible="false"/>

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

关于android - TextInputEditText - 使可点击但不可编辑,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66496815/

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